summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ObjectFactoryManager.h
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-12-01 17:36:19 +0100
committerJose <jose@zeroc.com>2015-12-01 17:36:19 +0100
commit2029ff368e49fae489b8ec8fc12f7d126b182dfb (patch)
tree6075d652b7851831c39e6f22004d8720864f1a60 /cpp/src/Ice/ObjectFactoryManager.h
parentThe default LMDB map size for IceGrid and IceStorm is now 10MB (Windows) (diff)
downloadice-2029ff368e49fae489b8ec8fc12f7d126b182dfb.tar.bz2
ice-2029ff368e49fae489b8ec8fc12f7d126b182dfb.tar.xz
ice-2029ff368e49fae489b8ec8fc12f7d126b182dfb.zip
C++11 mapping initial commit
Diffstat (limited to 'cpp/src/Ice/ObjectFactoryManager.h')
-rw-r--r--cpp/src/Ice/ObjectFactoryManager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/ObjectFactoryManager.h b/cpp/src/Ice/ObjectFactoryManager.h
index 97efc5305ee..c102d276c2c 100644
--- a/cpp/src/Ice/ObjectFactoryManager.h
+++ b/cpp/src/Ice/ObjectFactoryManager.h
@@ -13,7 +13,7 @@
#include <IceUtil/Shared.h>
#include <IceUtil/Mutex.h>
#include <Ice/ObjectFactoryManagerF.h>
-#include <Ice/ObjectFactoryF.h>
+#include <Ice/ObjectFactory.h>
namespace IceInternal
{
@@ -22,11 +22,11 @@ class ObjectFactoryManager : public ::IceUtil::Shared, public ::IceUtil::Mutex
{
public:
- void add(const ::Ice::ObjectFactoryPtr&, const std::string&);
+ void add(const ICE_OBJECT_FACTORY&, const std::string&);
+ ICE_OBJECT_FACTORY find(const std::string&) const;
+ typedef std::map<std::string, ICE_OBJECT_FACTORY> FactoryMap;
+
void remove(const std::string&);
- ::Ice::ObjectFactoryPtr find(const std::string&) const;
-
- typedef std::map<std::string, ::Ice::ObjectFactoryPtr> FactoryMap;
private: