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 /cppe/src/IceE/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 'cppe/src/IceE/FactoryTable.cpp')
-rw-r--r-- | cppe/src/IceE/FactoryTable.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/src/IceE/FactoryTable.cpp b/cppe/src/IceE/FactoryTable.cpp index 8ad4a409a8d..2973966ebf3 100644 --- a/cppe/src/IceE/FactoryTable.cpp +++ b/cppe/src/IceE/FactoryTable.cpp @@ -17,17 +17,17 @@ // 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. // -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(); } |