summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_valuebox.h
blob: b1cf8aea4382b7c1775a40872568414eac9d0103 (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
48

//=============================================================================
/**
 *  @file    be_valuebox.h
 *
 *  $Id$
 *
 *  Extension of class AST_Valuebox that provides additional means for C++
 *  mapping.
 *
 *
 *  @author Gary Maxey
 */
//=============================================================================


#ifndef TAO_BE_VALUEBOX_H
#define TAO_BE_VALUEBOX_H

#include "ast_valuebox.h"
#include "be_type.h"

class AST_Type;
class be_visitor;

class be_valuebox : public virtual AST_ValueBox,
                    public virtual be_type
{
public:
  /// Default constructor.
  be_valuebox (void);

  /// Constructor.
  be_valuebox ( AST_Type *boxed_type,
                UTL_ScopedName *n );

  // Visiting.
  virtual int accept (be_visitor *visitor);

  // Cleanup.
  virtual void destroy (void);

  // Narrowing

  DEF_NARROW_FROM_DECL (be_valuebox);
};

#endif /* TAO_BE_VALUEBOX_H */