be_eventtype.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 68 行
H
68 行
/* -*- c++ -*- */
// be_eventtype.h,v 1.2 2003/06/17 15:09:23 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// be_eventtype.h
//
// = DESCRIPTION
// Extension of class AST_EventType and be_valuetype that provides
// additional means for C++ mapping of an valuetype.
//
// ============================================================================
#ifndef TAO_BE_EVENTTYPE_H
#define TAO_BE_EVENTTYPE_H
#include "be_valuetype.h"
#include "ast_eventtype.h"
class be_eventtype : public virtual be_valuetype,
public virtual AST_EventType
{
// = TITLE
// Backend-class for eventtypes
//
// = DESCRIPTION
// Extends be_valuetype.
//
public:
be_eventtype (void);
// Default constructor.
be_eventtype (UTL_ScopedName *n,
AST_Interface **inherits,
long n_inherits,
AST_ValueType *inherits_concrete,
AST_Interface **inherits_flat,
long n_inherits_flat,
AST_Interface **supports,
long n_supports,
AST_Interface *supports_concrete,
idl_bool abstract,
idl_bool truncatable,
idl_bool custom);
// Constructor that sets its scoped name <n>, a list of inherited valuetypes
// and supported interfaces <ih>, and the number of inherited interfaces <nih>
~be_eventtype (void);
// Destructor.
// Visiting.
virtual int accept (be_visitor *visitor);
// Cleanup.
virtual void destroy (void);
// Narrowing.
DEF_NARROW_METHODS2 (be_eventtype, be_valuetype, AST_EventType);
DEF_NARROW_FROM_DECL (be_eventtype);
DEF_NARROW_FROM_SCOPE (be_eventtype);
};
#endif // if !defined
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?