summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_structure.cpp
blob: d2eb7e7bec61e8c3a797bfd712e660504137c64a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include	"idl.h"
#include	"idl_extern.h"
#include	"be.h"

/*
 * BE_Structure
 */
be_structure::be_structure()
{
}
be_structure::be_structure(UTL_ScopedName *n, UTL_StrList *p)
	    : AST_Decl(AST_Decl::NT_struct, n, p),
	      UTL_Scope(AST_Decl::NT_struct)
{
}

// Narrowing
IMPL_NARROW_METHODS1(be_structure, AST_Structure)
IMPL_NARROW_FROM_DECL(be_structure)
IMPL_NARROW_FROM_SCOPE(be_structure)