📄 test_i.h
字号:
// test_i.h,v 1.5 2002/01/29 20:20:57 okellogg Exp
// ============================================================================
//
// = LIBRARY
// TAO/performance-tests/RTCorba/Oneways/Reliable
//
// = FILENAME
// test_i.h
//
// = AUTHOR
// Jeff Parsons
//
// ============================================================================
#ifndef TAO_RELIABLE_TEST_I_H
#define TAO_RELIABLE_TEST_I_H
#include "testS.h"
class Test_i : public POA_Test
{
// = TITLE
// An implementation for the Test interface
//
// = DESCRIPTION
// Implements the Test interface in test.idl
//
public:
Test_i (CORBA::ORB_ptr orb);
// ctor
// = The Test methods.
void oneway_payload_test (const Test::data &d
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
void oneway_work_test (CORBA::ULong work
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
void twoway_work_test (CORBA::ULong work
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
void shutdown (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
CORBA::ORB_var orb_;
// The ORB
};
#if defined(__ACE_INLINE__)
#include "test_i.i"
#endif /* __ACE_INLINE__ */
#endif /* TAO_RELIABLE_TEST_I_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -