diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
commit | 3030ac8c355435c4426c82019669c476f5c76088 (patch) | |
tree | c57f7c0a983c44847f93285f0676df49f21707b9 /cppe/src/IceE/FactoryTable.cpp | |
parent | Use direct proxy for process object instead of indirect proxy (diff) | |
download | ice-3030ac8c355435c4426c82019669c476f5c76088.tar.bz2 ice-3030ac8c355435c4426c82019669c476f5c76088.tar.xz ice-3030ac8c355435c4426c82019669c476f5c76088.zip |
Renamed namespace back to Ice
Diffstat (limited to 'cppe/src/IceE/FactoryTable.cpp')
-rw-r--r-- | cppe/src/IceE/FactoryTable.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cppe/src/IceE/FactoryTable.cpp b/cppe/src/IceE/FactoryTable.cpp index da2bc0e35e3..0d782b09b3c 100644 --- a/cppe/src/IceE/FactoryTable.cpp +++ b/cppe/src/IceE/FactoryTable.cpp @@ -11,23 +11,23 @@ #include <IceE/UserExceptionFactory.h> // -// This constructor initializes the single global IceE::factoryTable instance +// This constructor initializes the single global Ice::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 IceE::factoryTable is always initialized before it is used. +// This ensures that Ice::factoryTable is always initialized before it is used. // -IceE::FactoryTable::FactoryTable() +Ice::FactoryTable::FactoryTable() { - IceE::factoryTableWrapper.initialize(); + Ice::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. // -IceE::FactoryTable::~FactoryTable() +Ice::FactoryTable::~FactoryTable() { - IceE::factoryTableWrapper.finalize(); + Ice::factoryTableWrapper.finalize(); } |