interceptors_arglist.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 59 行
H
59 行
//
// interceptors_arglist.h,v 1.3 2002/09/25 16:25:38 parsons Exp
//
// ============================================================================
//
// = LIBRARY
// TAO IDL
//
// = FILENAME
// interceptors_arglist.h
//
// = DESCRIPTION
// Visitor for generating code for IDL operations. This generates the
// operation signature.
//
// = AUTHOR
// Kirthika Parameswaran
//
// ============================================================================
#ifndef _BE_VISITOR_OPERATION_INTERCEPTORS_ARGLIST_H_
#define _BE_VISITOR_OPERATION_INTERCEPTORS_ARGLIST_H_
// ******************************************************************************
// Operation visitor for argument list - generates parameters in the signature
// ******************************************************************************
class be_visitor_operation_interceptors_arglist : public be_visitor_operation
{
//
// = TITLE
// be_visitor_operaion_interceptors_arglist
//
// = DESCRIPTION
// This is a visitor to generate operation argument list
//
//
public:
be_visitor_operation_interceptors_arglist (be_visitor_context *ctx);
// constructor
~be_visitor_operation_interceptors_arglist (void);
// destructor
virtual int visit_operation (be_operation *node);
// visit the operation
virtual int visit_argument (be_argument *node);
// visit each argument
virtual int pre_process (be_decl *);
// stuff to o/p before each element of the scope is handled
virtual int post_process (be_decl *);
// stuff to o/p after each element of the scope is handled
};
#endif /* _BE_VISITOR_OPERATION_INTERCEPTORS_ARGLIST_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?