test_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 65 行
H
65 行
// Test_i.h,v 1.5 2002/01/29 20:21:08 okellogg Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/Object_Loader
//
// = FILENAME
// Test_i.h
//
// = AUTHOR
// Carlos O'Ryan
//
// ============================================================================
#ifndef TAO_OBJECT_LOADER_TEST_I_H
#define TAO_OBJECT_LOADER_TEST_I_H
#include "TestS.h"
#include "OLT_Export.h"
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
class OLT_Export Test_i : public POA_Test, public PortableServer::RefCountServantBase
{
// = TITLE
// Implement the Test interface
//
// = DESCRIPTION
//
public:
Test_i (PortableServer::POA_ptr poa);
// ctor
CORBA::Long instance_count (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException));
void destroy (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException));
PortableServer::POA_ptr _default_POA (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
PortableServer::POA_var poa_;
// The default POA used for this object
static CORBA::Long instance_count_;
};
#if defined(__ACE_INLINE__)
#include "Test_i.i"
#endif /* __ACE_INLINE__ */
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
#pragma warning(pop)
#endif /* _MSC_VER */
#endif /* TAO_OBJECT_LOADER_TEST_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?