blob: 4e15bb13a92b0728c93150cb7af1ca311d9c315f [file] [log] [blame]
David Reiss7f42bcf2008-01-11 20:59:12 +00001//
2// TProtocolFactory.cs
3//
4// Begin: Dec 3, 2007
David Reiss0c90f6f2008-02-06 22:18:40 +00005// Authors:
David Reiss7f42bcf2008-01-11 20:59:12 +00006// 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;
David Reiss7f42bcf2008-01-11 20:59:12 +000013using Thrift.Transport;
14
15namespace Thrift.Protocol
16{
17 public interface TProtocolFactory
18 {
19 TProtocol GetProtocol(TTransport trans);
20 }
21}