first_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 34 行
H
34 行
//
// First_i.h,v 1.3 2003/11/04 05:21:39 dhinton Exp
//
#ifndef TAO_TWO_OBJECTS_FIRST_I_H
#define TAO_TWO_OBJECTS_FIRST_I_H
#include "Two_ObjectsS.h"
#include "ace/Auto_Event.h"
/// Implement the Two_Objects_Test::First interface
class First_i
: public virtual POA_Two_Objects_Test::First
{
public:
// Ctor..
First_i (CORBA::ORB_ptr orb, ACE_Auto_Event &two_way_done);
/// Interface methods..
void oneway_method (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
/// Use an ORB reference to conver strings to objects and shutdown
/// the application.
CORBA::ORB_var orb_;
ACE_Auto_Event &two_way_done_;
};
#endif /* TAO_TWO_OBJECTS_FIRST_I_H*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?