blob: 5f567717a84e4a4f15733356c234bd9f2e01f851 [file] [log] [blame]
Mark Slee7e9eea42007-09-10 21:00:23 +00001#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