/* ****************************************************************** * * Marcos Abreu Bento * * marcosbento@gmail.com * * ------------------------------------------------------------------ * * My implementation of Factory Method design pattern * * ****************************************************************** */ #ifndef PRODUCT_HPP_ #define PRODUCT_HPP_ class Product { public: virtual ~Product() {}; virtual void doFeature() = 0; }; #endif