/* * FactoryStub.hpp * * Created on: Jan 4, 2011 Author: heber */ #ifndef FACTORYSTUB_HPP_ #define FACTORYSTUB_HPP_ #include "CreatorStub.hpp" // has to be appear BEFORE Factory.hpp is included! #include "FactoryStub.def" #include "FactoryTypeList.hpp" #include "Factory.hpp" #include "Singleton.hpp" class FactoryStub : public Singleton, public Factory { friend class Singleton; protected: FactoryStub(); virtual ~FactoryStub(); }; #include "FactoryStub.undef" #endif /* FACTORYSTUB_HPP_ */