identification_service.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 55 行
H
55 行
// -*- C++ -*-
//=============================================================================
/**
* @file Identification_Service.h
*
* Identification_Service.h,v 1.4 2003/11/24 04:07:41 huangming Exp
*
* @author Huang-Ming Huang <hh1@cse.wustl.edu>
*/
//=============================================================================
#ifndef IDENTIFICATION_SERVICE_H
#define IDENTIFICATION_SERVICE_H
#include "ace/Service_Object.h"
#include "orbsvcs/CosNamingC.h"
#include "orbsvcs/FTRTC.h"
#include "orbsvcs/FtRtecEventCommC.h"
#include "ftrtec_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
namespace FTRTEC
{
class Identification_Service : public ACE_Service_Object
{
public:
Identification_Service();
~Identification_Service();
/**
* This function returns 0 when init is not called yet.
*/
static Identification_Service* instance();
int init(int argc, ACE_TCHAR* argv[]);
const FtRtecEventComm::ObjectId& object_id() const;
const CosNaming::Name& name() const;
private:
FtRtecEventComm::ObjectId object_id_;
CosNaming::Name name_;
};
ACE_STATIC_SVC_DECLARE_EXPORT (TAO_FTRTEC, Identification_Service)
ACE_STATIC_SVC_REQUIRE(Identification_Service)
ACE_FACTORY_DECLARE (TAO_FTRTEC, Identification_Service)
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?