diff options
Diffstat (limited to 'libxsd-frontend/xsd-frontend/traversal/attribute-group.cxx')
-rw-r--r-- | libxsd-frontend/xsd-frontend/traversal/attribute-group.cxx | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/libxsd-frontend/xsd-frontend/traversal/attribute-group.cxx b/libxsd-frontend/xsd-frontend/traversal/attribute-group.cxx deleted file mode 100644 index a40afd7..0000000 --- a/libxsd-frontend/xsd-frontend/traversal/attribute-group.cxx +++ /dev/null @@ -1,29 +0,0 @@ -// file : xsd-frontend/traversal/attribute-group.cxx -// copyright : Copyright (c) 2006-2014 Code Synthesis Tools CC -// 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&) - { - } - } -} |