#ifndef EXPRESSION_FACTORY_HPP #define EXPRESSION_FACTORY_HPP template struct ExpressionFactory { ExpressionFactory() : _count(0) { } private: unsigned int _count; }; #endif