Browse CVS Repository
Annotation of /undmail/proto/DummyOutlineItem.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( hide annotations)
( download)
( as text)
Sat Nov 2 05:49:40 2002 UTC
(21 years, 5 months ago)
by footashida
Branch point for: MAIN, vendor
File MIME type: text/x-chdr
Initial revision
| 1 |
footashida |
1.1 |
#import <Foundation/Foundation.h> |
| 2 |
|
|
|
| 3 |
|
|
|
| 4 |
|
|
@interface DummyOutlineItem : NSObject { |
| 5 |
|
|
NSString *itemName; |
| 6 |
|
|
} |
| 7 |
|
|
+(DummyOutlineItem *)rootItem; |
| 8 |
|
|
- (id)itemName; |
| 9 |
|
|
- (int)numberOfChildren; // Returns -1 for leaf nodes |
| 10 |
|
|
- (DummyOutlineItem *)childAtIndex:(int)n; // Invalid to call on leaf nodes |
| 11 |
|
|
@end |
|