상속: GLib.Object, TreeModelImplementor
예제 #1
0
파일: Node.cs 프로젝트: mono/emveepee
 public Node(ProfileStore store, Node parent)
 {
     this.store = store;
         this.parent = parent;
         gch = GCHandle.Alloc (this, GCHandleType.Weak);
 }
예제 #2
0
 public ClassNode(ProfileStore store, Node parent, ProfileData.ClassItem instance)
     : base(store, parent)
 {
     this.instance = instance;
 }
예제 #3
0
 public MethodNode(ProfileStore store, Node parent, StackItem allocator, uint count)
     : base(store, parent)
 {
     this.allocator = allocator;
     this.count = count;
 }
예제 #4
0
파일: StackView.cs 프로젝트: mono/emveepee
 public StackNode(ProfileStore store, Node parent, StackItem item)
     : base(store, parent)
 {
     this.item = item;
 }