aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/complex.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/traversal/complex.hxx')
-rw-r--r--xsd-frontend/traversal/complex.hxx43
1 files changed, 0 insertions, 43 deletions
diff --git a/xsd-frontend/traversal/complex.hxx b/xsd-frontend/traversal/complex.hxx
deleted file mode 100644
index 6a23342..0000000
--- a/xsd-frontend/traversal/complex.hxx
+++ /dev/null
@@ -1,43 +0,0 @@
-// file : xsd-frontend/traversal/complex.hxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#ifndef XSD_FRONTEND_TRAVERSAL_COMPLEX_HXX
-#define XSD_FRONTEND_TRAVERSAL_COMPLEX_HXX
-
-#include <xsd-frontend/traversal/elements.hxx>
-#include <xsd-frontend/semantic-graph/complex.hxx>
-
-namespace XSDFrontend
-{
- namespace Traversal
- {
- struct Complex : ScopeTemplate<SemanticGraph::Complex>
- {
- virtual void
- traverse (Type&);
-
- virtual void
- pre (Type&);
-
- virtual void
- name (Type&);
-
- virtual void
- inherits (Type&);
-
- void
- inherits (Type&, EdgeDispatcher&);
-
- virtual void
- contains_compositor (Type&);
-
- void
- contains_compositor (Type&, EdgeDispatcher&);
-
- virtual void
- post (Type&);
- };
- }
-}
-
-#endif // XSD_FRONTEND_TRAVERSAL_COMPLEX_HXX