summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h
blob: 7a859d855279e1bf72f20ddae77219ca853a8ab2 (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
//
// $Id$
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    array_ch.h
//
// = DESCRIPTION
//    Visitors for generation of code for Arrays in client header.
//
// = AUTHOR
//    Aniruddha Gokhale
//
// ============================================================================

#if !defined (_BE_VISITOR_ARRAY_CH_H_)
#define _BE_VISITOR_ARRAY_CH_H_

// ************************************************************
// class be_visitor_array_ch
// ************************************************************

class be_visitor_array_ch : public be_visitor_array
{
  //
  // = TITLE
  //   be_visitor_array_ch
  //
  // = DESCRIPTION
  //   Code to be generated for arrays in the client header file
  //
public:
  be_visitor_array_ch (be_visitor_context *ctx);
  // constructor

  virtual ~be_visitor_array_ch (void);
  // destructor

  virtual int visit_array (be_array *node);
  // visit the array node

};

#endif /* _BE_VISITOR_ARRAY_CH_H_ */