Inheritance: GLib.Object, TreeModelImplementor
Ejemplo n.º 1
0
 public Node(ProfileStore store, Node parent)
 {
     this.store = store;
         this.parent = parent;
         gch = GCHandle.Alloc (this, GCHandleType.Weak);
 }
Ejemplo n.º 2
0
 public ClassNode(ProfileStore store, Node parent, ProfileData.ClassItem instance)
     : base(store, parent)
 {
     this.instance = instance;
 }
Ejemplo n.º 3
0
 public MethodNode(ProfileStore store, Node parent, StackItem allocator, uint count)
     : base(store, parent)
 {
     this.allocator = allocator;
     this.count = count;
 }
Ejemplo n.º 4
0
 public StackNode(ProfileStore store, Node parent, StackItem item)
     : base(store, parent)
 {
     this.item = item;
 }