test_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 61 行
H
61 行
// -*- C++ -*-
//=============================================================================
/**
* @file test_i.h
*
* test_i.h,v 1.3 2002/01/29 20:21:09 okellogg Exp
*
* Implementation header for the "test" IDL interface for the
* request interceptor flow test.
*
* @author Ossama Othman <ossama@uci.edu>
*/
//=============================================================================
#ifndef TEST_I_H
#define TEST_I_H
#include "testS.h"
/**
* @class test_i
*
* @brief Simple test class.
*
* This class implements the "test" interface used in this test.
*/
class test_i : public virtual POA_Test
{
public:
/// Constructor.
test_i (CORBA::ORB_ptr orb);
/// The client-side test operation.
virtual void client_test (Test::TestScenario scenario
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((Test::X,
Test::UnknownScenario,
CORBA::SystemException));
/// The server-side test operation.
virtual void server_test (Test::TestScenario scenario
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((Test::X,
Test::UnknownScenario,
CORBA::SystemException));
/// Shutdown the ORB.
virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
/// Pseudo-reference to the ORB.
CORBA::ORB_var orb_;
};
#endif /* TEST_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?