summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_union_fwd.cpp
blob: 0980994c2ee74777edc211a299352c4a0fc0667a (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
49
50
51

//=============================================================================
/**
 *  @file    be_union_fwd.cpp
 *
 *  Extension of class AST_UnionFwd that provides additional means for C++
 *  mapping of a union.
 *
 *  @author Jeff Parsons
 */
//=============================================================================

#include "be_union_fwd.h"
#include "be_visitor.h"
#include "ast_union.h"

be_union_fwd::be_union_fwd (AST_Union *dummy,
                            UTL_ScopedName *n)
  : COMMON_Base (),
    AST_Decl (AST_Decl::NT_union_fwd,
              n),
    AST_Type (AST_Decl::NT_union_fwd,
              n),
    AST_StructureFwd (dummy,
                      n),
    AST_UnionFwd (dummy,
                  n),
    be_decl (AST_Decl::NT_union_fwd,
             n),
    be_type (AST_Decl::NT_union_fwd,
             n),
    be_structure_fwd (dummy,
                      n)
{
}

be_union_fwd::~be_union_fwd ()
{
}

void
be_union_fwd::destroy ()
{
  this->be_structure_fwd::destroy ();
}

int
be_union_fwd::accept (be_visitor *visitor)
{
  return visitor->visit_union_fwd (this);
}