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

//=============================================================================
/**
 *  @file    be_valuebox.h
 *
 *  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:
  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 */