summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_native.cpp~
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-07 19:53:20 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-07 19:53:20 +0000
commitb7a2a009d7bd36a1b01e714f1c5e264f2811f2b6 (patch)
tree4db4327609d6dbffbab4445e3451de19ca3bbf4b /TAO/TAO_IDL/ast/ast_native.cpp~
parentbe5c228c7a69ab3a219c762222d81ccca94560dd (diff)
downloadATCD-main_to_poa_merge_5.tar.gz
This commit was manufactured by cvs2svn to create tagmain_to_poa_merge_5
'main_to_poa_merge_5'.
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_native.cpp~')
-rw-r--r--TAO/TAO_IDL/ast/ast_native.cpp~31
1 files changed, 0 insertions, 31 deletions
diff --git a/TAO/TAO_IDL/ast/ast_native.cpp~ b/TAO/TAO_IDL/ast/ast_native.cpp~
deleted file mode 100644
index d5cbb843080..00000000000
--- a/TAO/TAO_IDL/ast/ast_native.cpp~
+++ /dev/null
@@ -1,31 +0,0 @@
-
-// 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)