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


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

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

ACE_RCSID(ast, ast_native, "$Id$")

// 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)
{
}

// Destructor.
AST_Native::~AST_Native (void)
{
}

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

int
AST_Native::ast_accept (ast_visitor *visitor)
{
  return visitor->visit_native (this);
}

// Narrowing.
IMPL_NARROW_METHODS1(AST_Native, AST_Type)
IMPL_NARROW_FROM_DECL(AST_Native)