diff options
Diffstat (limited to 'cpp/src/IcePack/Forward.h')
-rw-r--r-- | cpp/src/IcePack/Forward.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp/src/IcePack/Forward.h b/cpp/src/IcePack/Forward.h new file mode 100644 index 00000000000..2a2cbdd44be --- /dev/null +++ b/cpp/src/IcePack/Forward.h @@ -0,0 +1,32 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef FORWARD_H +#define FORWARD_H + +#include <IcePack/Admin.h> +#include <map> + +class Forward : public Ice::ObjectLocator +{ +public: + + Forward(const IcePack::AdminPtr&); + + virtual Ice::ObjectPtr locate(const Ice::ObjectAdapterPtr&, const std::string&, Ice::ObjectPtr&); + virtual void finished(const Ice::ObjectAdapterPtr&, const std::string&, const Ice::ObjectPtr&, + const Ice::ObjectPtr&); + +private: + + IcePack::AdminPtr _admin; +}; + +#endif |