summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_eventtype/eventtype_obv_cs.h
blob: 8024c40f0cb39e1c1b5926010e92918a0cc85566 (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
//
// $Id$
//
/* -*- c++ -*- */
// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    eventtype_obv_cs.h
//
// = DESCRIPTION
//    Concrete visitor for the Eventtype node.
//    This one provides code generation for valuetype OBV_ class
//    in the (client) stub.
//
// = AUTHOR
//    Jeff Parsons
//
// ============================================================================

#ifndef _BE_EVENTTYPE_EVENTTYPE_OBV_CS_H_
#define _BE_EVENTTYPE_EVENTTYPE_OBV_CS_H_

class be_visitor_eventtype_obv_cs : public be_visitor_valuetype
{
  //
  // = TITLE
  //   be_visitor_eventtype_obv_cs
  //
  // = DESCRIPTION
  //   This is a concrete visitor to generate the stub for valuetype
  //   OBV_ class
  //
public:
  be_visitor_eventtype_obv_cs (be_visitor_context *ctx);
  // constructor

  ~be_visitor_eventtype_obv_cs (void);
  // destructor

  virtual int visit_eventtype (be_eventtype *node);
};

#endif /* _BE_EVENTTYPE_EVENTTYPE_OBV_CS_H_ */