request_info_cs.h

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

H
49
字号
//
// request_info_cs.h,v 1.2 2000/08/18 23:51:44 kirthika Exp
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    request_info_cs.h
//
// = DESCRIPTION
//    Visitors for generation of code for Arguments as private member lists in the
//    request_info class for interceptors
//
// = AUTHOR
//    Kirthika Parameswaran  <kirthika@cs.wustl.edu>
//
// ============================================================================

#ifndef _BE_VISITOR_ARGUMENT_REQUEST_INFO_CS_H_
#define _BE_VISITOR_ARGUMENT_REQUEST_INFO_CS_H_

class be_visitor_args_request_info_cs : public be_visitor_args
{
  //
  // = TITLE
  //   Generates the code for arguments output.
  //
  // = DESCRIPTION
  //   At several stages in the code generation a node of type
  //   "be_operation" is visited, and the code for its arguments must
  //   be generated. This class generates the constructor member list
  //   for the Request_Info class.
  //
public:
  be_visitor_args_request_info_cs (be_visitor_context *ctx);
  // constructor

  virtual ~be_visitor_args_request_info_cs (void);
  // destructor

  virtual int visit_argument (be_argument *node);
  // visit the argument node
};

#endif /* _BE_VISITOR_ARGUMENT_REQUEST_INFO_CS_H_ */

⌨️ 快捷键说明

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