sum_server_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 41 行
H
41 行
// sum_server_i.h,v 1.2 2002/01/29 20:20:46 okellogg Exp
//=============================================================================
/**
* @file sum_server_i.h
*
* sum_server_i.h,v 1.2 2002/01/29 20:20:46 okellogg Exp
*
* Implementation header for the "server" IDL interface for the
* ORT example.
*
* @author Priyanka Gontla <gontla_p@ociweb.com>
*/
//=============================================================================
#ifndef SUM_SERVER_I_H
#define SUM_SERVER_I_H
#include "sum_serverS.h"
// Must include this header file and link to TAO_IFR_Client.lib
// to dynamically load this necessary library.
#include "tao/IFR_Client/IFR_Client_Adapter_Impl.h"
class sum_server_i : public virtual POA_ORT::sum_server
{
public:
/// Constructor
sum_server_i ();
/// add variables method
CORBA::Long add_variables (CORBA::Long a,
CORBA::Long b
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
};
#endif /* SUM_SERVER_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?