From 4d1967b5e69ae2a2fe572b9b69ef798a6c364da9 Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Fri, 5 Aug 2005 05:10:55 +0000 Subject: Moved FactoryTable into IceInternal namespace. --- cpp/src/Ice/FactoryTable.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cpp/src/Ice/FactoryTable.cpp') 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 // -// 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(); } -- cgit v1.2.3