summaryrefslogtreecommitdiff
path: root/Expression.h
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@carlo-laptop>2012-04-06 14:02:26 +1000
committerCarlo Zancanaro <carlo@carlo-laptop>2012-04-06 14:02:26 +1000
commit5d7252681da3b26845fc4e5dcf0b0e94ed9fabb1 (patch)
tree20bc0a6b62390aabda0b8c446d3a2177990863f6 /Expression.h
parent83e2c574bdefe2d040cdfbe20a73380a0f0123dd (diff)
Move everything into impl/ and add a Makefile.
Diffstat (limited to 'Expression.h')
-rw-r--r--Expression.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Expression.h b/Expression.h
deleted file mode 100644
index 105ad28..0000000
--- a/Expression.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef EXPRESSION_H
-#define EXPRESSION_H
-
-#include <string>
-#include <map>
-
-template<class T>
-struct Expression {
- virtual T eval(const std::map<std::string, T>&) const = 0;
-};
-
-#endif