#ifndef PERFORM_FACTORY_H #define PERFORM_FACTORY_H #include #include "perform.h" #include "plugger.h" #include "singleton.h" class PerformFactory : public Plugger, public Singleton { public: PerformFactory(); virtual ~PerformFactory(); private: }; #endif