📄 lifecycle_service_i.h
字号:
// LifeCycle_Service_i.h,v 1.6 2002/01/29 20:20:46 okellogg Exp
// ============================================================================
//
// = FILENAME
// LifeCycle_Service_i.h
//
// = DESCRIPTION
// A Life Cycle Service for the Quoter example.
//
// = AUTHOR
// Michael Kircher (mk1@cs.wustl.edu)
//
// ============================================================================
#include "orbsvcs/LifeCycleServiceS.h"
#include "Factory_Trader.h"
#include "Criteria_Evaluator.h"
#ifndef LIFECYCLE_SERVICE_IMPL_H
#define LIFECYCLE_SERVICE_IMPL_H
class Life_Cycle_Service_i : public POA_LifeCycleService::Life_Cycle_Service
{
// = TILE
// A CosLifeCycle conforming Generic Factory.
public:
Life_Cycle_Service_i (int debug_level = 1);
~Life_Cycle_Service_i (void);
CORBA::Boolean supports (const CosLifeCycle::Key &factory_key
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
// Returns true if the Generic Factory is able to forward a request
// for creating an object described by the <factory_key>.
CORBA::Object_ptr create_object (const CosLifeCycle::Key &factory_key,
const CosLifeCycle::Criteria &the_criteria
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
CosLifeCycle::NoFactory,
CosLifeCycle::InvalidCriteria,
CosLifeCycle::CannotMeetCriteria));
// Returns an object reference to a newly created object, though the
// Generic Factory itself cannot create objects, it will forward the
// request to a more concrete Factory.
void register_factory (const char * name,
const char * location,
const char * description,
CORBA::Object_ptr object
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC (( CORBA::SystemException));
// Registers a factory with specified properties
private:
Factory_Trader *factory_trader_ptr_;
int debug_level_;
// debug level (0 = quiet, 1 = default, informative, 2+ = noisy);
};
#endif /* LIFECYCLE_SERVICE_IMPL_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -