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.cxx35
1 files changed, 35 insertions, 0 deletions
diff --git a/xsd-frontend/traversal/union.cxx b/xsd-frontend/traversal/union.cxx
new file mode 100644
index 0000000..bb156d4
--- /dev/null
+++ b/xsd-frontend/traversal/union.cxx
@@ -0,0 +1,35 @@
+// file : xsd-frontend/traversal/union.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <xsd-frontend/traversal/union.hxx>
+
+namespace XSDFrontend
+{
+ namespace Traversal
+ {
+ Void Union::
+ traverse (Type& l)
+ {
+ pre (l);
+ name (l);
+ post (l);
+ }
+
+ Void Union::
+ pre (Type&)
+ {
+ }
+
+ Void Union::
+ name (Type&)
+ {
+ }
+
+ Void Union::
+ post (Type&)
+ {
+ }
+ }
+}