Browse CVS Repository
Contents of /undmail/proto/POPEngineAndPOPController/POPRequest.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
( as text)
Thu Mar 6 13:50:01 2003 UTC
(21 years, 1 month ago)
by masakih
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +3 -3 lines
File MIME type: text/x-chdr
dependency from accountInfo is lessened. using protocol.
| 1 |
// |
| 2 |
// POPRequest.h |
| 3 |
// undproto |
| 4 |
// |
| 5 |
// Created by Hori,Masaki on Tue Nov 26 2002. |
| 6 |
// Copyright (c) 2002 __MyCompanyName__. All rights reserved. |
| 7 |
// |
| 8 |
|
| 9 |
#import <Foundation/Foundation.h> |
| 10 |
|
| 11 |
#import "CommunicationRequest.h" |
| 12 |
#import "POPEngineProtocol.h" |
| 13 |
#import "PrototypePOPController.h" |
| 14 |
#import <UnnamedMail/AccountInfoProtocol.h> |
| 15 |
|
| 16 |
@interface POPRequest : NSObject <CommunicationRequest> |
| 17 |
{ |
| 18 |
id <AccountInfo> account; |
| 19 |
Class popEngineClass; |
| 20 |
id <POPEngine> popEngine; |
| 21 |
id _delegate; |
| 22 |
|
| 23 |
id workingArray; |
| 24 |
int status; |
| 25 |
} |
| 26 |
|
| 27 |
-(void)setAccountInfo:(id <AccountInfo>)account; |
| 28 |
-(void)setPOPEngineClass:(Class)popEngine; |
| 29 |
-(void)setDelegate:(id)delegate; |
| 30 |
|
| 31 |
-(void)nextPhase; |
| 32 |
|
| 33 |
@end |
|