📄 cubit_i.h
字号:
/* -*- C++ -*- */
// cubit_i.h,v 1.20 2002/01/29 20:20:56 okellogg Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests
//
// = FILENAME
// cubit_i.h
//
// = AUTHOR
// Andy Gokhale, Sumedh Mungee, Sergio Flores-Gaitan and Nagarajan Surendran.
//
// ============================================================================
#ifndef _CUBIT_I_H
#define _CUBIT_I_H
#include "cubitS.h"
class Cubit_i : public POA_Cubit
{
// = TITLE
// Cubit implementation class.
public:
// = Initialization and termination methods.
Cubit_i (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa);
~Cubit_i (void);
virtual CORBA::Octet cube_octet (CORBA::Octet o
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual CORBA::Short cube_short (CORBA::Short s
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual CORBA::Long cube_long (CORBA::Long l
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual Cubit::Many cube_struct (const Cubit::Many &values
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void noop (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void shutdown (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual PortableServer::POA_ptr
_default_POA (ACE_ENV_SINGLE_ARG_DECL);
// The default POA
protected:
CORBA::ORB_var orb_;
// Keep a pointer to the ORB so we can shut it down.
PortableServer::POA_var poa_;
// The default POA..
};
#endif /* _CUBIT_I_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -