From 713a4cc24da81b513962a85d4b4c43fb6b79419d Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 11 Feb 2013 00:21:20 +0000 Subject: Updated the copyright to 2013. Also, started the Gats::RpcHandler. --- c++-libbu++/src/rpchandler.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 c++-libbu++/src/rpchandler.h (limited to 'c++-libbu++/src/rpchandler.h') diff --git a/c++-libbu++/src/rpchandler.h b/c++-libbu++/src/rpchandler.h new file mode 100644 index 0000000..fed5ffc --- /dev/null +++ b/c++-libbu++/src/rpchandler.h @@ -0,0 +1,33 @@ +/* + * 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 -- cgit v1.2.3