diff options
Diffstat (limited to 'cpp/src/Glacier/ClientBlobject.h')
-rw-r--r-- | cpp/src/Glacier/ClientBlobject.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/cpp/src/Glacier/ClientBlobject.h b/cpp/src/Glacier/ClientBlobject.h new file mode 100644 index 00000000000..e9a4b39104a --- /dev/null +++ b/cpp/src/Glacier/ClientBlobject.h @@ -0,0 +1,39 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef CLIENT_BLOBJECT_H +#define CLIENT_BLOBJECT_H + +#include <Ice/RoutingTableF.h> +#include <Ice/Ice.h> + +namespace Glacier +{ + +class ClientBlobject : public Ice::Blobject +{ +public: + + ClientBlobject(const Ice::CommunicatorPtr&, const IceInternal::RoutingTablePtr&); + + void destroy(); + virtual void ice_invoke(const std::vector<Ice::Byte>&, std::vector<Ice::Byte>&, const Ice::Current&); + +private: + + Ice::CommunicatorPtr _communicator; + Ice::LoggerPtr _logger; + int _traceLevel; + IceInternal::RoutingTablePtr _routingTable; +}; + +} + +#endif |