aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/attribute-group.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/traversal/attribute-group.cxx')
-rw-r--r--xsd-frontend/traversal/attribute-group.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/xsd-frontend/traversal/attribute-group.cxx b/xsd-frontend/traversal/attribute-group.cxx
deleted file mode 100644
index 8d362c2..0000000
--- a/xsd-frontend/traversal/attribute-group.cxx
+++ /dev/null
@@ -1,28 +0,0 @@
-// file : xsd-frontend/traversal/attribute-group.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <xsd-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&)
- {
- }
- }
-}