summaryrefslogtreecommitdiff
path: root/impl/ExpressionFactory.hpp
blob: 0eb72687aa6ea9dafd61aedddd3c9f81568ed983 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef EXPRESSION_FACTORY_HPP
#define EXPRESSION_FACTORY_HPP

template<typename T>
struct ExpressionFactory {
  ExpressionFactory() : _count(0) { }

  private:
  unsigned int _count;
};

#endif