Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00034 #import <Foundation/Foundation.h>
00035
00036 @class PrecedingRequest;
00037
00041 @interface Request : NSObject <NSCoding, NSCopying>{
00042 NSString *requestID;
00043 NSString *peerName;
00044 NSInteger peerID;
00045 NSInteger r;
00046 PrecedingRequest *a;
00047 id operation;
00048 NSInteger v;
00049 NSString *f;
00050 }
00051
00052 @property (nonatomic, retain) NSString *requestID;
00053 @property (nonatomic, retain) NSString *peerName;
00054 @property (nonatomic) NSInteger peerID;
00055 @property (nonatomic) NSInteger r;
00056 @property (nonatomic, retain) PrecedingRequest *a;
00057 @property (nonatomic, retain) id operation;
00058 @property (nonatomic) NSInteger v;
00059 @property (nonatomic, retain) NSString *f;
00060
00066 -(id)copyWithZone:(NSZone *)zone;
00067 @end