summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h
blob: df723ab6b939904b4f87e8bbcff108e1a1f68834 (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
/* -*- c++ -*- */
//=============================================================================
/**
 *  @file    valuetype_cs.h
 *
 *  Concrete visitor for the Valuetype node.
 *  This one provides code generation for valuetypes in the client stubs.
 *
 *  @author Torsten Kuepper  <kuepper2@lfa.uni-wuppertal.de> based on code from Aniruddha Gokhale
 */
//=============================================================================


#ifndef _BE_VALUETYPE_VALUETYPE_CS_H_
#define _BE_VALUETYPE_VALUETYPE_CS_H_

/**
 * @class be_visitor_valuetype_cs
 *
 * @brief be_visitor_valuetype_cs
 *
 * This is a concrete visitor to generate the client stubs for valuetype
 */
class be_visitor_valuetype_cs : public be_visitor_valuetype
{
public:
  be_visitor_valuetype_cs (be_visitor_context *ctx);

  ~be_visitor_valuetype_cs (void);

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

  /// Called only by AMH exceptions.
  virtual int visit_operation (be_operation *node);

private:
  /// Recursive to generate for inherited members.
  void gen_ostream_operator_r (be_valuetype *node, unsigned long &index);
};

#endif /* _BE_VALUETYPE_VALUETYPE_CS_H_ */