summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_enum/enum_cs.h
blob: a40455f2190d9a22df4b5970886c1395cfe553b1 (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
/* -*- C++ -*- */
//
// $Id$
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    enum_cs.h
//
// = DESCRIPTION
//    Concrete visitor for Enums generating code in the client stubs.
//
// = AUTHOR
//    Aniruddha Gokhale
//
// ============================================================================

#ifndef _BE_VISITOR_ENUM_ENUM_CS_H_
#define _BE_VISITOR_ENUM_ENUM_CS_H_

class be_visitor_enum_cs : public be_visitor_scope
{
  //
  // = TITLE
  //   be_visitor_enum_cs
  //
  // = DESCRIPTION
  //   This is the visitor for enum for the impl file
  //
  //
public:
  be_visitor_enum_cs (be_visitor_context *ctx);
  // conenumor

  ~be_visitor_enum_cs (void);
  // deenumor

  virtual int visit_enum (be_enum *node);
  // visit enum and generate the typecode

};

#endif /* _BE_VISITOR_ENUM_ENUM_CS_H_ */