diff options
author | Michi Henning <michi@zeroc.com> | 2005-08-05 05:10:55 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-08-05 05:10:55 +0000 |
commit | 4d1967b5e69ae2a2fe572b9b69ef798a6c364da9 (patch) | |
tree | 4a97787ec006f73a4080a996b0892a4097aa6366 /cpp/src/Ice/FactoryTable.cpp | |
parent | adding default config (diff) | |
download | ice-4d1967b5e69ae2a2fe572b9b69ef798a6c364da9.tar.bz2 ice-4d1967b5e69ae2a2fe572b9b69ef798a6c364da9.tar.xz ice-4d1967b5e69ae2a2fe572b9b69ef798a6c364da9.zip |
Moved FactoryTable into IceInternal namespace.
Diffstat (limited to 'cpp/src/Ice/FactoryTable.cpp')
-rw-r--r-- | cpp/src/Ice/FactoryTable.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Ice/FactoryTable.cpp b/cpp/src/Ice/FactoryTable.cpp index 04d4d570e98..8e3742ce007 100644 --- a/cpp/src/Ice/FactoryTable.cpp +++ b/cpp/src/Ice/FactoryTable.cpp @@ -11,23 +11,23 @@ #include <Ice/UserExceptionFactory.h> // -// This constructor initializes the single global Ice::factoryTable instance +// This constructor initializes the single global IceInternal::factoryTable instance // from the outside (if it hasn't been initialized yet). The constructor here // is triggered by a file-static instance of FactoryTable in each // slice2cpp-generated header file that uses non-local exceptions or non-abstract classes. -// This ensures that Ice::factoryTable is always initialized before it is used. +// This ensures that IceInternal::factoryTable is always initialized before it is used. // -Ice::FactoryTable::FactoryTable() +IceInternal::FactoryTable::FactoryTable() { - Ice::factoryTableWrapper.initialize(); + IceInternal::factoryTableWrapper.initialize(); } // // Similarly, the destructor calls the finalize() method on the factory table wrapper which, // once the tables reference count drops to zero, deletes the table. // -Ice::FactoryTable::~FactoryTable() +IceInternal::FactoryTable::~FactoryTable() { - Ice::factoryTableWrapper.finalize(); + IceInternal::factoryTableWrapper.finalize(); } |