Mark Slee | 7e9eea4 | 2007-09-10 21:00:23 +0000 | [diff] [blame] | 1 | #import <Cocoa/Cocoa.h> |
2 | #import "TTransport.h" | ||||
3 | |||||
4 | @interface TNSStreamTransport : NSObject <TTransport> { | ||||
5 | NSInputStream * mInput; | ||||
6 | NSOutputStream * mOutput; | ||||
7 | } | ||||
8 | |||||
9 | - (id) initWithInputStream: (NSInputStream *) input | ||||
10 | outputStream: (NSOutputStream *) output; | ||||
11 | |||||
12 | - (id) initWithInputStream: (NSInputStream *) input; | ||||
13 | |||||
14 | - (id) initWithOutputStream: (NSOutputStream *) output; | ||||
15 | |||||
16 | @end | ||||
17 | |||||
18 | |||||
19 |