summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox.h
blob: b3709563f2f2bfdc21abbf1f2154114f8b419edd (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
/* -*- c++ -*- */

//=============================================================================
/**
 *  @file    valuebox.h
 *
 *  Concrete visitor for the Valuebox node.
 *
 *  @author Gary Maxey
 */
//=============================================================================


#ifndef _BE_VISITOR_VALUEBOX_H_
#define _BE_VISITOR_VALUEBOX_H_

/**
 * @class be_visitor_valuebox
 *
 * @brief be_visitor_valuebox
 *
 * This is a concrete visitor to generate code for valueboxes.
 */
class be_visitor_valuebox : public be_visitor_decl
{
public:
  /// constructor
  be_visitor_valuebox (be_visitor_context *ctx);

  /// destructor
  ~be_visitor_valuebox (void);

  /// visit attribute. We provide code for this method in the derived class
  virtual int visit_valuebox (be_valuebox *node);
};

#endif /* _BE_VISITOR_VALUEBOX_H_ */