summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_scope.h
blob: 07796a9b0e25ce1a637d1aa027fed0fcdd9bb2d2 (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
//
// $Id$
//
/* -*- c++ -*- */
// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    be_visitor_scope.h
//
// = DESCRIPTION
//    Concrete visitor for the base "BE_Scope" node
//
// = AUTHOR
//    Aniruddha Gokhale and Carlos O'Ryan
//
// ============================================================================

#if !defined (TAO_BE_VISITOR_SCOPE_H)
#define TAO_BE_VISITOR_SCOPE_H

#include "be_visitor.h"
#include "be_visitor_decl.h"

class be_visitor_scope : public be_visitor_decl
{
  //
  // = TITLE
  //    be_visitor_scope
  //
  // = DESCRIPTION
  //   This is a concrete visitor for the be_scope node. Its only purpose is to
  //   iterate over the elements of the scope
  //
public:
  be_visitor_scope (be_visitor_context *ctx);
  // constructor

  ~be_visitor_scope (void);
  // destructor

  int visit_scope (be_scope *node);
  // visit scope

  virtual int post_process (void);
  // do any processing after every element except the last one of the scope is
  // processed
};


#endif // TAO_BE_VISITOR_SCOPE_H