// file : xsd-frontend/traversal/attribute-group.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include namespace XSDFrontend { namespace Traversal { Void AttributeGroup:: traverse (Type& g) { pre (g); names (g); post (g); } Void AttributeGroup:: pre (Type&) { } Void AttributeGroup:: post (Type&) { } } }