summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/IFR_Service/ifr_adding_visitor_operation.h
blob: 73cc1bb6e95ec57ba46793459abf1eb2bf6a3076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// $Id$

/* -*- 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 */