arglist.h

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

H
58
字号
//
// arglist.h,v 1.4 2003/10/28 18:30:41 bala Exp
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    arglist.h
//
// = DESCRIPTION
//    Visitor for generating code for IDL (valuetype) operations.
//    This generates the operation signature.
//
//
// ============================================================================

#ifndef _BE_VISITOR_OBV_OPERATION_ARGLIST_H_
#define _BE_VISITOR_OBV_OPERATION_ARGLIST_H_

// ******************************************************************************
// Operation visitor for argument list - generates parameters in the signature
// ******************************************************************************

class be_visitor_obv_operation_arglist : public be_visitor_scope
{
  //
  // = TITLE
  //   be_visitor_operaion_arglist
  //
  // = DESCRIPTION
  //   This is a visitor to generate operation argument list
  //
  //
public:
  be_visitor_obv_operation_arglist (be_visitor_context *ctx);
  // constructor

  ~be_visitor_obv_operation_arglist (void);
  // destructor

  idl_bool is_amh_exception_holder (be_operation *node);
  // special arglist generation for amh_exceptionholders

  int visit_operation (be_operation *node);
  // visit the operation

  int visit_argument (be_argument *node);
  // visit each argument

  int post_process (be_decl *bd);
  // set 'comma' only between arguments
};

#endif /* _BE_VISITOR_OBV_OPERATION_ARGLIST_H_ */

⌨️ 快捷键说明

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