blob: 5434da91d3b509f4049ae9f4dc6984c749e58f12 [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 System.Collections.Generic;
using System.Text;
using Thrift.Transport;
namespace Thrift.Protocol
{
public interface TProtocolFactory
{
TProtocol GetProtocol(TTransport trans);
}
}