summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_native.cpp~
blob: d5cbb843080cf579bfeea371b43dd0b8d4ccf126 (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

// AST_Native: New IDL type added by the POA spec

#include	"idl.h"
#include	"idl_extern.h"

/*
 * Constructor(s)
 */
AST_Native::AST_Native (void)
{
}

AST_Native::AST_Native(UTL_ScopedName *n,
                       UTL_StrList *p)
  : AST_Decl (AST_Decl::NT_native, n, p)
{
}

/*
 * Dump this AST_Native node to the ostream o
 */
void
AST_Native::dump (ostream &o)
{
  AST_Decl::dump (o);
}

// Narrowing
IMPL_NARROW_METHODS1(AST_Native, AST_Decl)
IMPL_NARROW_FROM_DECL(AST_Native)