summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_native.cpp
blob: 17888d864036dbf597359eca24dd9529e2a2199c (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
// $Id$


// 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_Type)
IMPL_NARROW_FROM_DECL(AST_Native)