blob: 46c5e2a937805a6a07ce2a4c32f654f9b2dd9d5b [file] [log] [blame]
David Reissc6544162009-01-06 19:49:33 +00001//
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
9namespace 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}