root_sth.h

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 60 行

H
60
字号
/* -*- c++ -*- */
//
// root_sth.h,v 1.3 2002/09/25 16:25:38 parsons Exp
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    root_sth.h
//
// = DESCRIPTION
//    Concrete visitor for the Root class
//    This one provides code generation for elements of the Root node in the
//    server template header.
//
// = AUTHOR
//    Jeff Parsons
//
// ============================================================================

#ifndef _BE_VISITOR_ROOT_ROOT_STH_H_
#define _BE_VISITOR_ROOT_ROOT_STH_H_

class be_visitor_root_sth : public be_visitor_root
{
  //
  // = TITLE
  //   be_visitor_root_sth
  //
  // = DESCRIPTION
  //   This is a concrete visitor to generate the server template
  //   header for root.
  //
  //
public:
  be_visitor_root_sth (be_visitor_context *ctx);
  // Constructor.

  ~be_visitor_root_sth (void);
  // Destructor.

  virtual int init (void);
  // Set the right context and make a visitor.

  // Overrides of base class methods so we can skip unnecessary nodes.

  virtual int visit_scope (be_scope *node);

  virtual int visit_module (be_module *node);

  virtual int visit_interface (be_interface *node);

  virtual int visit_component (be_component *node);
};

#endif /* _BE_VISITOR_ROOT_ROOT_STH_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?