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