| David Reiss | c654416 | 2009-01-06 19:49:33 +0000 | [diff] [blame] | 1 | // |
| 2 | // TBase.cs | ||||
| 3 | // | ||||
| 4 | // Distributed under the Thrift Software License | ||||
| 5 | // | ||||
| 6 | // See accompanying file LICENSE or visit the Thrift site at: | ||||
| 7 | // http://developers.facebook.com/thrift/using | ||||
| 8 | |||||
| 9 | namespace Thrift.Protocol | ||||
| 10 | { | ||||
| 11 | public interface TBase | ||||
| 12 | { | ||||
| 13 | /// | ||||
| 14 | /// Reads the TObject from the given input protocol. | ||||
| 15 | /// | ||||
| 16 | void Read(TProtocol tProtocol); | ||||
| 17 | |||||
| 18 | /// | ||||
| 19 | /// Writes the objects out to the protocol | ||||
| 20 | /// | ||||
| 21 | void Write(TProtocol tProtocol); | ||||
| 22 | } | ||||
| 23 | } | ||||