From bd6f1415823a473da4518769fc292c10330d821d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 16 Sep 2009 18:14:00 +0200 Subject: Start tracking libxsd-frontend with git --- xsd-frontend/traversal/particle.cxx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 xsd-frontend/traversal/particle.cxx (limited to 'xsd-frontend/traversal/particle.cxx') diff --git a/xsd-frontend/traversal/particle.cxx b/xsd-frontend/traversal/particle.cxx new file mode 100644 index 0000000..90e9eb2 --- /dev/null +++ b/xsd-frontend/traversal/particle.cxx @@ -0,0 +1,31 @@ +// file : xsd-frontend/traversal/particle.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2006-2009 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&) + { + } + } +} -- cgit v1.1