]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 0.91.1
[gob-dx.git] / src / test.gob
index b5b180e68e13f49f3c5386b32af5a0fb700c48f6..0152a00bd28c966d5a508d1812e9a41a2763dd1e 100644 (file)
@@ -5,6 +5,7 @@
    the file itself.  So you can this way select where the include file is
    at */
 #include "gtk-weird-button.h"
+#include "gtk-weird-button-private.h"
 
 static void jjjj(void);
 %}
@@ -19,6 +20,7 @@ class Gtk:Weird:Button from Gtk:Button {
        private int j;
        public GtkWidget * h;
        public char *bleh;
+       public double array[23][18];
 
        init(object) {
                GtkWeirdButton *but = GTK_WEIRD_BUTTON(object);
@@ -67,15 +69,21 @@ class Gtk:Weird:Button from Gtk:Button {
        signal first private NONE (NONE)
        void googlegoogle2(self)
        {
+               int array[5][8][9]={{{0}}};
                puts("TEST2");
-               testprivvirtual(self);
+               testprivvirtual(self,array);
        }
        virtual private
-       void testprivvirtual(self)
+       void testprivvirtual(self, int some_array[5][8][9])
        {
                puts("TEST3");
                googlegoogle(self);
        }
+       signal first NONE (POINTER)
+       void testarrsignal(self, long arr[8])
+       {
+               puts("TEST2");
+       }
 }
 
 %{