summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h
blob: 101ce40ce31b8d6dfd52a83890410acc39574f54 (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_cs.h
//
// = DESCRIPTION
//    Visitors for generation of code for Arrays in client stubs.
//
// = AUTHOR
//    Aniruddha Gokhale
//
// ============================================================================

#if !defined (_BE_VISITOR_ARRAY_CS_H_)
#define _BE_VISITOR_ARRAY_CS_H_

// ************************************************************
// class be_visitor_array_cs
// ************************************************************

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

  virtual ~be_visitor_array_cs (void);
  // destructor

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

};

#endif /* _BE_VISITOR_ARRAY_CS_H_ */