summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_si.h
blob: 698c702d03ed3ef6b334965fd999c4fa85c8a7db (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
/* -*- c++ -*- */
//=============================================================================
/**
 *  @file    valuetype_si.h
 *
 *  $Id$
 *
 *  Concrete visitor for the valuetype node.
 *  This provides for code generation in the server inline
 *
 *
 *  @author Jeff Parsons
 */
//=============================================================================


#ifndef _BE_VALUETYPE_VALUETYPE_SI_H_
#define _BE_VALUETYPE_VALUETYPE_SI_H_

/**
 * @class be_visitor_valuetype_si
 *
 * @brief be_visitor_valuetype_si
 *
 * This is a concrete visitor to generate the server inline for valuetype
 */
class be_visitor_valuetype_si : public be_visitor_valuetype
{
public:
  /// constructor
  be_visitor_valuetype_si (be_visitor_context *ctx);

  /// destructor
  ~be_visitor_valuetype_si (void);

  virtual int visit_valuetype (be_valuetype *node);
  virtual int visit_eventtype (be_eventtype *node);
};

#endif /* _BE_VALUETYPE_VALUETYPE_SI_H_ */