diff options
author | Michi Henning <michi@zeroc.com> | 2003-10-06 23:26:58 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-10-06 23:26:58 +0000 |
commit | 5844bc00dc1abb29c3f516f581ec241bac74b15d (patch) | |
tree | dee8ccd65fa475fb7181c18d80bc24405e07a490 /cpp/include/Ice/FactoryTableDef.h | |
parent | Fixed checkpoint, small Evictor refactoring (diff) | |
download | ice-5844bc00dc1abb29c3f516f581ec241bac74b15d.tar.bz2 ice-5844bc00dc1abb29c3f516f581ec241bac74b15d.tar.xz ice-5844bc00dc1abb29c3f516f581ec241bac74b15d.zip |
Moved UserExceptionFactory from Ice to IceInternal namespace/package.
Diffstat (limited to 'cpp/include/Ice/FactoryTableDef.h')
-rw-r--r-- | cpp/include/Ice/FactoryTableDef.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/include/Ice/FactoryTableDef.h b/cpp/include/Ice/FactoryTableDef.h index 776e985cacf..dd4fdb3fa0c 100644 --- a/cpp/include/Ice/FactoryTableDef.h +++ b/cpp/include/Ice/FactoryTableDef.h @@ -17,8 +17,8 @@ #include <IceUtil/StaticMutex.h> #include <IceUtil/Mutex.h> -#include <Ice/UserExceptionFactory.h> -#include <Ice/ObjectFactory.h> +#include <Ice/UserExceptionFactoryF.h> +#include <Ice/ObjectFactoryF.h> #include <string> #include <map> @@ -29,8 +29,8 @@ class ICE_API FactoryTableDef : public IceUtil::noncopyable { public: - void addExceptionFactory(const ::std::string&, const Ice::UserExceptionFactoryPtr&); - Ice::UserExceptionFactoryPtr getExceptionFactory(const ::std::string&) const; + void addExceptionFactory(const ::std::string&, const IceInternal::UserExceptionFactoryPtr&); + IceInternal::UserExceptionFactoryPtr getExceptionFactory(const ::std::string&) const; void removeExceptionFactory(const ::std::string&); void addObjectFactory(const ::std::string&, const Ice::ObjectFactoryPtr&); @@ -41,7 +41,7 @@ private: IceUtil::Mutex _m; - typedef ::std::pair<Ice::UserExceptionFactoryPtr, int> EFPair; + typedef ::std::pair<IceInternal::UserExceptionFactoryPtr, int> EFPair; typedef ::std::map< ::std::string, EFPair> EFTable; EFTable _eft; |