Browse CVS Repository
Contents of /undmail/proto/POPEngineAndPOPController/PantomimePOPEngineWrapper.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 |
// PanotmimePOPEngineWrapper.h |
| 3 |
// |
| 4 |
// Created by Hori,Masaki on Wed Nov 13 2002. |
| 5 |
// |
| 6 |
|
| 7 |
#import <Foundation/Foundation.h> |
| 8 |
|
| 9 |
#import "POPEngineProtocol.h" |
| 10 |
|
| 11 |
@class POP3Store, POP3Folder; |
| 12 |
|
| 13 |
@interface PantomimePOPEngineWrapper : NSObject <POPEngine> |
| 14 |
{ |
| 15 |
NSString* _host; |
| 16 |
NSString* _account; |
| 17 |
NSString* _pass; |
| 18 |
|
| 19 |
unsigned _timeout; |
| 20 |
|
| 21 |
id _delegate; |
| 22 |
|
| 23 |
POP3Store* _store; |
| 24 |
POP3Folder* _folder; |
| 25 |
} |
| 26 |
|
| 27 |
@end |
|