aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/enumeration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/traversal/enumeration.cxx')
-rw-r--r--xsd-frontend/traversal/enumeration.cxx89
1 files changed, 0 insertions, 89 deletions
diff --git a/xsd-frontend/traversal/enumeration.cxx b/xsd-frontend/traversal/enumeration.cxx
deleted file mode 100644
index b7fb398..0000000
--- a/xsd-frontend/traversal/enumeration.cxx
+++ /dev/null
@@ -1,89 +0,0 @@
-// file : xsd-frontend/traversal/enumeration.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <xsd-frontend/traversal/enumeration.hxx>
-
-namespace XSDFrontend
-{
- namespace Traversal
- {
- // Enumeration
- //
- void Enumeration::
- traverse (Type& e)
- {
- pre (e);
- name (e);
- inherits (e);
- names (e);
- post (e);
- }
-
- void Enumeration::
- pre (Type&)
- {
- }
-
- void Enumeration::
- name (Type&)
- {
- }
-
- void Enumeration::
- inherits (Type& e)
- {
- inherits (e, *this);
- }
-
- void Enumeration::
- inherits (Type& e, EdgeDispatcher& d)
- {
- if (e.inherits_p ())
- d.dispatch (e.inherits ());
- }
-
- void Enumeration::
- post (Type&)
- {
- }
-
-
- // Enumerator
- //
- void Enumerator::
- traverse (Type& e)
- {
- pre (e);
- belongs (e);
- name (e);
- post (e);
- }
-
- void Enumerator::
- pre (Type&)
- {
- }
-
- void Enumerator::
- belongs (Type& e, EdgeDispatcher& d)
- {
- d.dispatch (e.belongs ());
- }
-
- void Enumerator::
- belongs (Type& e)
- {
- belongs (e, edge_traverser ());
- }
-
- void Enumerator::
- name (Type&)
- {
- }
-
- void Enumerator::
- post (Type&)
- {
- }
- }
-}