// ********************************************************************** // // Copyright (c) 2001 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #include #include #include using namespace std; Ice::ObjectPtr ServantFactory::create(const string& type) { assert(type == "::Persistent"); return new Persistent; } void ServantFactory::destroy() { // Nothing to do }