summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_native.h~
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_native.h~')
-rw-r--r--TAO/TAO_IDL/include/ast_native.h~35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/TAO_IDL/include/ast_native.h~ b/TAO/TAO_IDL/include/ast_native.h~
deleted file mode 100644
index b36a0c9d5d7..00000000000
--- a/TAO/TAO_IDL/include/ast_native.h~
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef _AST_NATIVE_H_
-#define _AST_NATIVE_H_
-
-// Representation of "native" IDL type added by the POA spec
-//
-/*
-** DEPENDENCIES: ast_decl.h
-**
-** USE: Included from ast.h
-*/
-
-class AST_Native : public virtual AST_Decl
-{
-public:
- // =Operations
-
- // Constructor(s)
- AST_Native (void);
- // default constructor
-
- AST_Native(UTL_ScopedName *n, UTL_StrList *p);
- // constructor that initializes its scoped name
-
- virtual ~AST_Native (void) {}
- // destructor
-
- // Narrowing
- DEF_NARROW_METHODS1(AST_Native, AST_Decl);
- DEF_NARROW_FROM_DECL(AST_Native);
-
- // AST Dumping
- virtual void dump(ostream &o);
-};
-
-#endif /* AST_NATIVE_H */