summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_finder.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_finder.h')
-rw-r--r--TAO/TAO_IDL/include/ast_finder.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/TAO_IDL/include/ast_finder.h b/TAO/TAO_IDL/include/ast_finder.h
deleted file mode 100644
index 8e6b55f3688..00000000000
--- a/TAO/TAO_IDL/include/ast_finder.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-// $Id$
-
-#ifndef TAO_IDL_AST_FINDER_H
-#define TAO_IDL_AST_FINDER_H
-
-// Representation of component home finder construct declaration.
-
-#include "ast_factory.h"
-
-class TAO_IDL_FE_Export AST_Finder : public virtual AST_Factory
-{
-public:
-
- AST_Finder (UTL_ScopedName *n);
-
- virtual ~AST_Finder (void);
- // Narrowing.
-
- DEF_NARROW_FROM_DECL(AST_Finder);
- DEF_NARROW_FROM_SCOPE(AST_Finder);
-
- // AST Dumping.
- virtual void dump (ACE_OSTREAM_TYPE &o);
-
- // Cleanup function.
- virtual void destroy (void);
-
- // Visiting.
- virtual int ast_accept (ast_visitor *visitor);
-
- static AST_Decl::NodeType const NT;
-};
-
-#endif // TAO_IDL_AST_FINDER_H