/* * Copyright (C) 2007-2013 Xagasoft, All rights reserved. * * This file is part of the libgats library and is released under the * terms of the license contained in the file LICENSE. */ #ifndef RPC_HANDLER_H #define RPC_HANDLER_H #include "gats/object.h" namespace Gats { class RpcHandler { public: RpcHandler( Gats::Object *pObj ); virtual ~RpcHandler(); private: class Function { public: Type tReturn; }; }; }; #endif