blob: 4e15bb13a92b0728c93150cb7af1ca311d9c315f [file] [log] [blame]
//
// TProtocolFactory.cs
//
// Begin: Dec 3, 2007
// Authors:
// Will Palmeri <wpalmeri@imeem.com>
//
// Distributed under the Thrift Software License
//
// See accompanying file LICENSE or visit the Thrift site at:
// http://developers.facebook.com/thrift/using
using System;
using Thrift.Transport;
namespace Thrift.Protocol
{
public interface TProtocolFactory
{
TProtocol GetProtocol(TTransport trans);
}
}