blob: 5434da91d3b509f4049ae9f4dc6984c749e58f12 [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
2// TProtocolFactory.cs
3//
4// Begin: Dec 3, 2007
5// Authors:
6// Will Palmeri <wpalmeri@imeem.com>
7//
8// Distributed under the Thrift Software License
9//
10// See accompanying file LICENSE or visit the Thrift site at:
11// http://developers.facebook.com/thrift/using
12using System;
13using System.Collections.Generic;
14using System.Text;
15using Thrift.Transport;
16
17namespace Thrift.Protocol
18{
19 public interface TProtocolFactory
20 {
21 TProtocol GetProtocol(TTransport trans);
22 }
23}