Browse CVS Repository
Contents of /undmail/proto/POPEngineAndPOPController/PrototypePOPController.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Wed Jan 29 13:46:19 2003 UTC
(21 years, 2 months ago)
by masakih
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-chdr
add POP's
| 1 |
// |
| 2 |
// PrototypePOPController.h |
| 3 |
// |
| 4 |
// Created by Hori,Masaki on Sun Nov 17 2002. |
| 5 |
// |
| 6 |
|
| 7 |
#import <Foundation/Foundation.h> |
| 8 |
|
| 9 |
#import "CommunicationChannel.h" |
| 10 |
|
| 11 |
@interface PrototypePOPController : NSObject |
| 12 |
{ |
| 13 |
Class popEngineClass; |
| 14 |
|
| 15 |
CommunicationChannel* channel; |
| 16 |
} |
| 17 |
|
| 18 |
-(BOOL)isRetryConnect; |
| 19 |
-(BOOL)isRetryAuthentication; |
| 20 |
|
| 21 |
-(NSArray*)makeMustFetchHeader:(NSArray*)messageIDs; |
| 22 |
-(BOOL)isFetchMailHasHeader:(NSData*)header; |
| 23 |
-(BOOL)addMailAndIsDelete:(NSData*)mail; |
| 24 |
@end |
| 25 |
|
| 26 |
|
|