00001
#ifndef maciServantManager_h
00002
#define maciServantManager_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
#include <acsutil.h>
00015
#include <tao/PortableServer/PortableServer.h>
00016
#include <tao/PortableServer/ServantActivatorC.h>
00017
00018
namespace maci {
00019
00024 class MACIServantManager :
00025
public PortableServer::ServantActivator
00026 {
00027
00028
public:
00030 MACIServantManager () {};
00031
00032
00033
00034
00035
00036
00037
virtual PortableServer::Servant
incarnate (
const PortableServer::ObjectId &oid,
00038 PortableServer::POA_ptr poa);
00039
00040
virtual void etherealize (
const PortableServer::ObjectId &oid,
00041 PortableServer::POA_ptr adapter,
00042 PortableServer::Servant servant,
00043 CORBA::Boolean cleanup_in_progress,
00044 CORBA::Boolean remaining_activations);
00045
00046
private:
00047
00048
00049 };
00050
00051 };
00052
00053
#endif
00054
00055