API  1.0.0
CPTreeNode.h
Go to the documentation of this file.
1 
2 @interface CPTreeNode : CPObject
3 {
4  id _representedObject // @accessors(readonly, property=representedObject);
5 
6  CPTreeNode _parentNode // @accessors(readonly, property=parentNode);
7  CPMutableArray _childNodes;
8 }
9 @end