summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/FactoryTableDef.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/FactoryTableDef.h')
-rw-r--r--cpp/include/Ice/FactoryTableDef.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/cpp/include/Ice/FactoryTableDef.h b/cpp/include/Ice/FactoryTableDef.h
deleted file mode 100644
index 51a22031585..00000000000
--- a/cpp/include/Ice/FactoryTableDef.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef ICE_FACTORY_TABLE_DEF_H
-#define ICE_FACTORY_TABLE_DEF_H
-
-#include <IceUtil/StaticMutex.h>
-#include <IceUtil/Mutex.h>
-#include <Ice/UserExceptionFactoryF.h>
-#include <Ice/ObjectFactoryF.h>
-#include <string>
-#include <map>
-
-namespace IceInternal
-{
-
-class ICE_API FactoryTableDef : private IceUtil::noncopyable
-{
-public:
-
- 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&);
- Ice::ObjectFactoryPtr getObjectFactory(const ::std::string&) const;
- void removeObjectFactory(const ::std::string&);
-
-private:
-
- IceUtil::Mutex _m;
-
- typedef ::std::pair<IceInternal::UserExceptionFactoryPtr, int> EFPair;
- typedef ::std::map< ::std::string, EFPair> EFTable;
- EFTable _eft;
-
- typedef ::std::pair<Ice::ObjectFactoryPtr, int> OFPair;
- typedef ::std::map< ::std::string, OFPair> OFTable;
- OFTable _oft;
-};
-
-}
-
-#endif