blob: 2cbddd7275d4f126d944baf4bdfc159c349443f3 [file] [log] [blame]
//
// TProcessor.cs
//
// Begin: Aug 19, 2007
// Authors:
// Todd Berman <tberman@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.Protocol;
namespace Thrift
{
public interface TProcessor
{
bool Process(TProtocol iprot, TProtocol oprot);
}
}