summaryrefslogtreecommitdiff
path: root/src/main/Element.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/Element.h')
-rw-r--r--src/main/Element.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/Element.h b/src/main/Element.h
index 6840eda..1a8ea44 100644
--- a/src/main/Element.h
+++ b/src/main/Element.h
@@ -13,6 +13,8 @@
#include "Vector3D.h"
#include "Particle.h"
#include "Printable.h"
+#include "ElementVisitor.h"
+
namespace vhc {
@@ -130,6 +132,7 @@ public:
return s.str();
}
+ virtual void accept(ElementVisitor& v) = 0;
};
}