summaryrefslogtreecommitdiff
path: root/impl/ExpressionFactory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'impl/ExpressionFactory.hpp')
-rw-r--r--impl/ExpressionFactory.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/impl/ExpressionFactory.hpp b/impl/ExpressionFactory.hpp
new file mode 100644
index 0000000..0eb7268
--- /dev/null
+++ b/impl/ExpressionFactory.hpp
@@ -0,0 +1,12 @@
+#ifndef EXPRESSION_FACTORY_HPP
+#define EXPRESSION_FACTORY_HPP
+
+template<typename T>
+struct ExpressionFactory {
+ ExpressionFactory() : _count(0) { }
+
+ private:
+ unsigned int _count;
+};
+
+#endif