diff options
author | Michi Henning <michi@zeroc.com> | 2002-12-05 06:59:17 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-12-05 06:59:17 +0000 |
commit | 531bc8037fb5cebb2201605eba4677348d603ba2 (patch) | |
tree | 47e8fd6148aa639ea041926f111790eb2b58bcda /cpp/src/Ice/ObjectFactoryManager.cpp | |
parent | Added AlreadyRegisteredException and NotRegisteredException. Removed (diff) | |
download | ice-531bc8037fb5cebb2201605eba4677348d603ba2.tar.bz2 ice-531bc8037fb5cebb2201605eba4677348d603ba2.tar.xz ice-531bc8037fb5cebb2201605eba4677348d603ba2.zip |
Changed the implementation of the various _kindOfObject members because
bloody VC++ can't handle initialization of static non-integral class
members :-(
Diffstat (limited to 'cpp/src/Ice/ObjectFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/ObjectFactoryManager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/Ice/ObjectFactoryManager.cpp b/cpp/src/Ice/ObjectFactoryManager.cpp index 02a646cbfce..59021c4fa6d 100644 --- a/cpp/src/Ice/ObjectFactoryManager.cpp +++ b/cpp/src/Ice/ObjectFactoryManager.cpp @@ -21,6 +21,8 @@ using namespace std; using namespace Ice; using namespace IceInternal; +const char * const IceInternal::ObjectFactoryManager::_kindOfObject = "object factory"; + void IceInternal::incRef(ObjectFactoryManager* p) { p->__incRef(); } void IceInternal::decRef(ObjectFactoryManager* p) { p->__decRef(); } |