00001 // Activator_Info.cpp,v 1.3 2005/04/12 22:18:48 michel_j Exp 00002 #include "Activator_Info.h" 00003 00004 Activator_Info::Activator_Info 00005 (const ACE_CString& aname, 00006 CORBA::Long atoken, 00007 const ACE_CString& aior, 00008 ImplementationRepository::Activator_ptr act) 00009 : name(aname) 00010 , token(atoken) 00011 , ior(aior) 00012 , activator (ImplementationRepository::Activator::_duplicate (act)) 00013 { 00014 } 00015 void 00016 Activator_Info::reset() 00017 { 00018 ior = ""; 00019 activator = ImplementationRepository::Activator::_nil(); 00020 }