diff options
Diffstat (limited to 'cpp/include/Ice/FactoryTable.h')
-rw-r--r-- | cpp/include/Ice/FactoryTable.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/cpp/include/Ice/FactoryTable.h b/cpp/include/Ice/FactoryTable.h index 0a1e9a363ef..0dc69753e86 100644 --- a/cpp/include/Ice/FactoryTable.h +++ b/cpp/include/Ice/FactoryTable.h @@ -13,8 +13,19 @@ #include <IceUtil/Mutex.h> #include <Ice/UserExceptionFactory.h> #include <Ice/ObjectFactoryF.h> -#include <string> -#include <map> + +namespace Ice +{ + +class ICE_API CompactIdResolver : public IceUtil::Shared +{ +public: + + virtual ::std::string resolve(Ice::Int) const = 0; +}; +typedef IceUtil::Handle<CompactIdResolver> CompactIdResolverPtr; + +} namespace IceInternal { |