aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/traversal/particle.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/traversal/particle.cxx')
-rw-r--r--xsd-frontend/traversal/particle.cxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/xsd-frontend/traversal/particle.cxx b/xsd-frontend/traversal/particle.cxx
deleted file mode 100644
index 97784b4..0000000
--- a/xsd-frontend/traversal/particle.cxx
+++ /dev/null
@@ -1,29 +0,0 @@
-// file : xsd-frontend/traversal/particle.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <xsd-frontend/traversal/particle.hxx>
-
-namespace XSDFrontend
-{
- namespace Traversal
- {
- // Particle
- //
- void Particle::
- traverse (Type& c)
- {
- pre (c);
- post (c);
- }
-
- void Particle::
- pre (Type&)
- {
- }
-
- void Particle::
- post (Type&)
- {
- }
- }
-}