Browse CVS Repository
Annotation of /undmail/guiproto/DUMMailBox.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( hide annotations)
( download)
( as text)
Wed Jan 29 18:30:41 2003 UTC
(21 years, 2 months ago)
by footashida
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -0 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
footashida |
1.1 |
#import <Foundation/Foundation.h> |
| 2 |
|
|
@class DUMMail; |
| 3 |
|
|
|
| 4 |
|
|
@interface DUMMailBox : NSObject { |
| 5 |
|
|
NSString *mailBoxName; |
| 6 |
|
|
NSMutableDictionary *childMailBox; |
| 7 |
|
|
NSMutableArray *childMailBoxNameArray; // 順番を保持するため |
| 8 |
|
|
NSMutableArray *mails; |
| 9 |
|
|
} |
| 10 |
|
|
-(id)initWithName:(NSString *)name dataFilePath:path; |
| 11 |
|
|
-(NSString *)name; |
| 12 |
|
|
-(void)addMail:(DUMMail *)mail; |
| 13 |
|
|
-(void)addMailBox:(DUMMailBox *)mailBox; |
| 14 |
|
|
-(unsigned int)countMailBoxes; |
| 15 |
|
|
-(unsigned int)countMail; |
| 16 |
footashida |
1.2 |
-(unsigned int)countUnreadMail; |
| 17 |
footashida |
1.1 |
-(DUMMail *)mailAtIndex:(unsigned int)index; |
| 18 |
|
|
-(DUMMailBox *)mailBoxAtIndex:(unsigned int)index; |
| 19 |
|
|
@end |
|