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

//=============================================================================
/**
 *  @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 ();
};

#endif /* TAO_BE_VALUEBOX_H */