| Mark Slee | 7e9eea4 | 2007-09-10 21:00:23 +0000 | [diff] [blame] | 1 | #import "TProtocol.h" |
| 2 | #import "TTransport.h" | ||||
| 3 | |||||
| 4 | @interface TBinaryProtocol : NSObject <TProtocol> { | ||||
| 5 | id <TTransport> mTransport; | ||||
| 6 | BOOL mStrictRead; | ||||
| 7 | BOOL mStrictWrite; | ||||
| 8 | } | ||||
| 9 | |||||
| 10 | - (id) initWithTransport: (id <TTransport>) transport; | ||||
| 11 | |||||
| 12 | - (id) initWithTransport: (id <TTransport>) transport | ||||
| 13 | strictRead: (BOOL) strictRead | ||||
| 14 | strictWrite: (BOOL) strictWrite; | ||||
| 15 | |||||
| 16 | @end; | ||||