// file : xsd-frontend/traversal/particle.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 { // Particle // Void Particle:: traverse (Type& c) { pre (c); post (c); } Void Particle:: pre (Type&) { } Void Particle:: post (Type&) { } } }