aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/union.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/traversal/union.cxx')
-rw-r--r--xsd-frontend/traversal/union.cxx46
1 files changed, 0 insertions, 46 deletions
diff --git a/xsd-frontend/traversal/union.cxx b/xsd-frontend/traversal/union.cxx
deleted file mode 100644
index 9656746..0000000
--- a/xsd-frontend/traversal/union.cxx
+++ /dev/null
@@ -1,46 +0,0 @@
-// file : xsd-frontend/traversal/union.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <xsd-frontend/traversal/union.hxx>
-
-namespace XSDFrontend
-{
- namespace Traversal
- {
- void Union::
- traverse (Type& u)
- {
- pre (u);
- argumented (u);
- name (u);
- post (u);
- }
-
- void Union::
- pre (Type&)
- {
- }
-
- void Union::
- argumented (Type& u)
- {
- argumented (u, *this);
- }
-
- void Union::
- argumented (Type& u, EdgeDispatcher& d)
- {
- iterate_and_dispatch (u.argumented_begin (), u.argumented_end (), d);
- }
-
- void Union::
- name (Type&)
- {
- }
-
- void Union::
- post (Type&)
- {
- }
- }
-}