diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-01-19 16:46:11 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-01-19 16:46:11 -0800 |
commit | d5dd7c866e9e1dc59dc7e127eb39f641530bf823 (patch) | |
tree | 61771e4f322a7138b643d5325a6d10acea30fb84 /cpp/include/Ice/FactoryTable.h | |
parent | Deprecate ice_name and add ice_id (diff) | |
download | ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.tar.bz2 ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.tar.xz ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.zip |
ICE-6861 - removing public stream API
Diffstat (limited to 'cpp/include/Ice/FactoryTable.h')
-rw-r--r-- | cpp/include/Ice/FactoryTable.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/include/Ice/FactoryTable.h b/cpp/include/Ice/FactoryTable.h index 8b6c8d1ad2a..03362685c43 100644 --- a/cpp/include/Ice/FactoryTable.h +++ b/cpp/include/Ice/FactoryTable.h @@ -14,7 +14,6 @@ #include <Ice/UserExceptionFactory.h> #include <Ice/ValueFactory.h> - namespace Ice { @@ -35,8 +34,8 @@ class ICE_API FactoryTable : private IceUtil::noncopyable { public: - void addExceptionFactory(const ::std::string&, const IceInternal::UserExceptionFactoryPtr&); - IceInternal::UserExceptionFactoryPtr getExceptionFactory(const ::std::string&) const; + void addExceptionFactory(const ::std::string&, const Ice::UserExceptionFactoryPtr&); + Ice::UserExceptionFactoryPtr getExceptionFactory(const ::std::string&) const; void removeExceptionFactory(const ::std::string&); #ifdef ICE_CPP11_MAPPING @@ -55,7 +54,7 @@ private: IceUtil::Mutex _m; - typedef ::std::pair<IceInternal::UserExceptionFactoryPtr, int> EFPair; + typedef ::std::pair<Ice::UserExceptionFactoryPtr, int> EFPair; typedef ::std::map< ::std::string, EFPair> EFTable; EFTable _eft; |