| %%% Copyright (c) 2007- Facebook |
| %%% Distributed under the Thrift Software License |
| %%% See accompanying file LICENSE or visit the Thrift site at: |
| %%% http://developers.facebook.com/thrift/ |
| -module(tBinaryProtocolFactory). |
| -include("protocol/tBinaryProtocol.hrl"). |
| -include("protocol/tBinaryProtocolFactory.hrl"). |
| -export([attr/4, super/0, inspect/1]). |
| -export([new/0, getProtocol/2]). |
| %%% 'super' is required unless ?MODULE is a base class |
| %%% super() -> SuperModule = atom() |
| %%% inspect(This) -> string() |
| getProtocol(_This, Trans) -> |
| oop:start_new(tBinaryProtocol, [Trans]). |