summaryrefslogtreecommitdiff
path: root/Max.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 /Max.h
parent83e2c574bdefe2d040cdfbe20a73380a0f0123dd (diff)
Move everything into impl/ and add a Makefile.
Diffstat (limited to 'Max.h')
-rw-r--r--Max.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/Max.h b/Max.h
deleted file mode 100644
index b3b5d65..0000000
--- a/Max.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef MAX_H
-#define MAX_H
-
-#include "Expression.h"
-
-template<class T>
-struct Max : public Expression<T> {
- Max(Expression<T>* left, Expression<T>* right)
- : _left(left), _right(right) { }
-
- T eval(const std::map<std::string, T>& mappings) const {
- T left = _left->eval(mappings);
- T right = _right->eval(mappings);
- return left < right ? right : left;
- }
-
- private:
- Expression<T>* _left;
- Expression<T>* _right;
-};
-
-#endif