]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 0.90.2
[gob-dx.git] / src / test.gob
index 42adca4862b36709d5261e5202f138c7b54b1d47..1c522a6f4e2a9d0f462d51be80439ec2698a92e0 100644 (file)
@@ -49,6 +49,28 @@ class Gtk:Weird:Button from Gtk:Button {
                if (GTK_CONTAINER_CLASS (parent_class)->add)
                        (* GTK_CONTAINER_CLASS (parent_class)->add) (self,wid);
        }
+       public int consttest(self, const gchar *text, ...)
+       {
+               return 25;
+       }
+       signal private first NONE (NONE)
+       void googlegoogle(self)
+       {
+               puts("TEST1");
+               googlegoogle2(self);
+       }
+       signal first private NONE (NONE)
+       void googlegoogle2(self)
+       {
+               puts("TEST2");
+               testprivvirtual(self);
+       }
+       virtual private
+       void testprivvirtual(self)
+       {
+               puts("TEST3");
+               googlegoogle(self);
+       }
 }
 
 %{