// // C++ Interface: MilkdropPresetFactory // // Description: // // // Author: Carmelo Piccione , (C) 2008 // // Copyright: See COPYING file that comes with this distribution // // #ifndef __MILKDROP_PRESET_FACTORY_HPP #define __MILKDROP_PRESET_FACTORY_HPP #include #include "../PresetFactory.hpp" class DLLEXPORT PresetOutputs; class DLLEXPORT PresetInputs; class MilkdropPresetFactory : public PresetFactory { public: MilkdropPresetFactory(int gx, int gy); virtual ~MilkdropPresetFactory(); std::auto_ptr allocate(const std::string & url, const std::string & name = std::string(), const std::string & author = std::string()); std::string supportedExtensions() const { return "milk prjm"; } private: static PresetOutputs* createPresetOutputs(int gx, int gy); void reset(); PresetOutputs * _presetOutputs; PresetOutputs * _presetOutputs2; bool _usePresetOutputs; //PresetInputs _presetInputs; }; #endif