📄 ifr_adding_visitor_operation.h
字号:
// ifr_adding_visitor_operation.h,v 1.7 2003/03/01 12:16:07 ossama Exp
/* -*- C++ -*- */
// ============================================================================
//
// = LIBRARY
// TAO_IFR_BE_DLL
//
// = FILENAME
// ifr_adding_visitor_operation.h
//
// = DESCRIPTION
// Header file for class ifr_adding_visitor_operation.
//
// = AUTHOR
// Jeff Parsons <parsons@cs.wustl.edu>
//
// ============================================================================
#ifndef TAO_IFR_ADDING_VISITOR_OPERATION_H
#define TAO_IFR_ADDING_VISITOR_OPERATION_H
#include "ifr_adding_visitor.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class ifr_adding_visitor_operation : public ifr_adding_visitor
{
//
// = TITLE
// ifr_adding_visitor_operation.
//
// = DESCRIPTION
// This visitor overrides a few of the visit methods
// for the case when an operation node is seen in the AST.
//
public:
ifr_adding_visitor_operation (AST_Decl *scope);
// Constructor.
virtual ~ifr_adding_visitor_operation (void);
// Destructor.
virtual int visit_operation (AST_Operation *node);
// Visit an operation.
virtual int visit_argument (AST_Argument *node);
// Visit argument.
private:
CORBA::ParDescriptionSeq params_;
// Holder for the operation parameter info passed to the
// interface repository method create_operation().
CORBA::ULong index_;
// Counter for building the parameter list.
};
#endif /* TAO_IFR_ADDING_VISITOR_OPERATION_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -