aboutsummaryrefslogtreecommitdiff
path: root/libxsd-frontend/traversal/attribute-group.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd-frontend/traversal/attribute-group.cxx')
-rw-r--r--libxsd-frontend/traversal/attribute-group.cxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/libxsd-frontend/traversal/attribute-group.cxx b/libxsd-frontend/traversal/attribute-group.cxx
new file mode 100644
index 0000000..af0b3f3
--- /dev/null
+++ b/libxsd-frontend/traversal/attribute-group.cxx
@@ -0,0 +1,28 @@
+// file : libxsd-frontend/traversal/attribute-group.cxx
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <libxsd-frontend/traversal/attribute-group.hxx>
+
+namespace XSDFrontend
+{
+ namespace Traversal
+ {
+ void AttributeGroup::
+ traverse (Type& g)
+ {
+ pre (g);
+ names (g);
+ post (g);
+ }
+
+ void AttributeGroup::
+ pre (Type&)
+ {
+ }
+
+ void AttributeGroup::
+ post (Type&)
+ {
+ }
+ }
+}