summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/Traversal/Translation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/Traversal/Translation.hpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/Traversal/Translation.hpp107
1 files changed, 0 insertions, 107 deletions
diff --git a/CIAO/CCF/CCF/IDL2/Traversal/Translation.hpp b/CIAO/CCF/CCF/IDL2/Traversal/Translation.hpp
deleted file mode 100644
index 7fc3f58c5d4..00000000000
--- a/CIAO/CCF/CCF/IDL2/Traversal/Translation.hpp
+++ /dev/null
@@ -1,107 +0,0 @@
-// file : CCF/IDL2/Traversal/Translation.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_IDL2_TRAVERSAL_TRANSLATION_HPP
-#define CCF_IDL2_TRAVERSAL_TRANSLATION_HPP
-
-#include "CCF/IDL2/Traversal/Elements.hpp"
-
-#include "CCF/IDL2/SemanticGraph/Translation.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace Traversal
- {
- // Some edges.
- //
- //
- struct ContainsPrincipal : Edge<SemanticGraph::ContainsPrincipal>
- {
- virtual void
- traverse (Type& e)
- {
- node_traverser ().traverse (e.element ());
- }
- };
-
- struct ContainsImplied : Edge<SemanticGraph::ContainsImplied>
- {
- virtual void
- traverse (Type& e)
- {
- node_traverser ().traverse (e.element ());
- }
- };
-
- struct ContainsRoot : Edge<SemanticGraph::ContainsRoot>
- {
- virtual void
- traverse (Type& e)
- {
- node_traverser ().traverse (e.element ());
- }
- };
-
- struct Includes : Edge<SemanticGraph::Includes>
- {
- virtual void
- traverse (Type& e)
- {
- node_traverser ().traverse (e.element ());
- }
- };
-
- struct QuoteIncludes : Edge<SemanticGraph::QuoteIncludes>
- {
- virtual void
- traverse (Type& e)
- {
- node_traverser ().traverse (e.element ());
- }
- };
-
- struct BracketIncludes : Edge<SemanticGraph::BracketIncludes>
- {
- virtual void
- traverse (Type& e)
- {
- node_traverser ().traverse (e.element ());
- }
- };
-
-
- //
- //
- //
- typedef
- ScopeTemplate <SemanticGraph::Root>
- Root;
-
-
- //
- //
- //
- struct TranslationRegion : Node<SemanticGraph::TranslationRegion>
- {
- virtual void
- traverse (SemanticGraph::TranslationRegion&);
- };
-
-
- //
- //
- //
- struct TranslationUnit : Node<SemanticGraph::TranslationUnit>
- {
- virtual void
- traverse (SemanticGraph::TranslationUnit&);
- };
-
- }
- }
-}
-
-#endif // CCF_IDL2_TRAVERSAL_TRANSLATION_HPP