summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2019-01-03 16:36:25 -0600
committerFred Hornsey <hornseyf@objectcomputing.com>2019-01-03 16:36:25 -0600
commitd4d222ee6621759ed2d88fb491dd84ada3ab98a1 (patch)
tree063122d0154ba460e1f57b557a81d4a5cfadd632
parent6be3af751a1904ca8ed596bf54bce39544876b40 (diff)
downloadATCD-d4d222ee6621759ed2d88fb491dd84ada3ab98a1.tar.gz
tao_idl: Remove unused be_annotation_decl
-rw-r--r--TAO/TAO_IDL/be/be_annotation_decl.cpp19
-rw-r--r--TAO/TAO_IDL/be_include/be_annotation_decl.h21
2 files changed, 0 insertions, 40 deletions
diff --git a/TAO/TAO_IDL/be/be_annotation_decl.cpp b/TAO/TAO_IDL/be/be_annotation_decl.cpp
deleted file mode 100644
index 7ee8a104053..00000000000
--- a/TAO/TAO_IDL/be/be_annotation_decl.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "be_annotation_decl.h"
-
-be_annotation_decl::be_annotation_decl (UTL_ScopedName *name)
- : AST_Decl (AST_Decl::NT_annotation_decl, name),
- AST_Type (AST_Decl::NT_annotation_decl, name),
- AST_ConcreteType (AST_Decl::NT_annotation_decl, name),
- AST_Structure (name, false, false),
- AST_Annotation_Decl (name)
-{
-}
-
-int
-be_annotation_decl::accept (be_visitor *)
-{
- return 0;
-}
-
-IMPL_NARROW_FROM_DECL (be_annotation_decl)
-IMPL_NARROW_FROM_SCOPE (be_annotation_decl)
diff --git a/TAO/TAO_IDL/be_include/be_annotation_decl.h b/TAO/TAO_IDL/be_include/be_annotation_decl.h
deleted file mode 100644
index e83c8d16714..00000000000
--- a/TAO/TAO_IDL/be_include/be_annotation_decl.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef BE_ANNOTATION_DECL_HEADER
-#define BE_ANNOTATION_DECL_HEADER
-
-class be_visitor;
-
-#include "ast_annotation_decl.h"
-
-class be_annotation_decl : public virtual AST_Annotation_Decl
-{
-public:
- be_annotation_decl (UTL_ScopedName *name);
-
- /// Visiting.
- virtual int accept (be_visitor *visitor);
-
- // Narrowing
- DEF_NARROW_FROM_DECL (be_annotation_decl);
- DEF_NARROW_FROM_SCOPE (be_annotation_decl);
-};
-
-#endif