| Mark Slee | 77575e6 | 2007-09-24 19:24:53 +0000 | [diff] [blame] | 1 | |
| 2 | #import <Cocoa/Cocoa.h> | ||||
| 3 | #import "TTransport.h" | ||||
| 4 | |||||
| 5 | @interface TNSFileHandleTransport : NSObject <TTransport> { | ||||
| 6 | NSFileHandle * mInputFileHandle; | ||||
| 7 | NSFileHandle * mOutputFileHandle; | ||||
| 8 | } | ||||
| 9 | |||||
| 10 | - (id) initWithFileHandle: (NSFileHandle *) fileHandle; | ||||
| 11 | |||||
| 12 | - (id) initWithInputFileHandle: (NSFileHandle *) inputFileHandle | ||||
| 13 | outputFileHandle: (NSFileHandle *) outputFileHandle; | ||||
| 14 | |||||
| 15 | |||||
| 16 | @end | ||||