Advertisement
rotrevrep

opa gobject style

Aug 9th, 2013
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.19 KB | None | 0 0
  1. public class Toto : Object
  2. {
  3.     public string titi {get;set construct;}
  4. }
  5.  
  6. public class Titi : Toto
  7. {
  8.     public Titi(){
  9.         Object(titi: "value");
  10.     }
  11.     construct { print(titi+"\n"); }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement