blob: 756bb5e3c21ea48daa03bce57e4f10c06bfd03ed [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;
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}