root.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 115 行
H
115 行
/* -*- c++ -*- */
//
// root.h,v 1.7 2003/10/28 18:30:40 bala Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// root.h
//
// = DESCRIPTION
// Concrete visitor for the Root class
// This one provides the generic visitor for the Root node.
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
#ifndef _BE_VISITOR_ROOT_ROOT_H_
#define _BE_VISITOR_ROOT_ROOT_H_
class be_visitor_root : public be_visitor_scope
{
//
// = TITLE
// be_visitor_root
//
// = DESCRIPTION
// This is a concrete visitor for root that abstracts all common tasks
//
public:
be_visitor_root (be_visitor_context *ctx);
// constructor
~be_visitor_root (void);
// destructor
virtual int visit_root (be_root *node);
// visit root
// =visit methods on all elements syntactically valid in a Root scope
virtual int visit_constant (be_constant *node);
// visit a constant
virtual int visit_enum (be_enum *node);
// visit an enum
virtual int visit_exception (be_exception *node);
// visit an exception
virtual int visit_interface (be_interface *node);
// visit an interface
virtual int visit_interface_fwd (be_interface_fwd *node);
// visit a forward declared interface
virtual int visit_valuetype (be_valuetype *node);
// visit a valuetype
virtual int visit_valuetype_fwd (be_valuetype_fwd *node);
// visit a forward declared valuetype
virtual int visit_eventtype (be_eventtype *node);
// visit an eventtype
virtual int visit_eventtype_fwd (be_eventtype_fwd *node);
// visit a forward declared eventtype
virtual int visit_component (be_component *node);
// visit a component
virtual int visit_component_fwd (be_component_fwd *node);
// visit a forward declared component
virtual int visit_home (be_home *node);
// visit a home
virtual int visit_module (be_module *node);
// visit a module
virtual int visit_structure (be_structure *node);
// visit a structure
virtual int visit_structure_fwd (be_structure_fwd *node);
// visit a forward declared structure
virtual int visit_union (be_union *node);
// visit a union
virtual int visit_union_fwd (be_union_fwd *node);
// visit a forward declared union
virtual int visit_typedef (be_typedef *node);
// visit the typedef node
// =helper. This is used by derived clases to set the right context
virtual int init (void);
// will be overridden by derived classes that set the appropriate context
private:
int gen_explicit_tmplinst (be_root *,
TAO_OutStream *);
// Generate guarded explicit template instantiations, for those platforms
// that require them.
};
#endif /* _BE_VISITOR_ROOT_ROOT_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?