// file : xsd-frontend/traversal/element-group.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #ifndef XSD_FRONTEND_TRAVERSAL_ELEMENT_GROUP_HXX #define XSD_FRONTEND_TRAVERSAL_ELEMENT_GROUP_HXX #include #include namespace XSDFrontend { namespace Traversal { struct ElementGroup: ScopeTemplate { virtual Void traverse (Type&); virtual Void pre (Type&); virtual Void contains_compositor (Type&); virtual Void contains_compositor (Type&, EdgeDispatcherBase&); virtual Void post (Type&); }; } } #endif // XSD_FRONTEND_TRAVERSAL_ELEMENT_GROUP_HXX