![]() |
Mixxx
|
00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 ***************************************************************************/ 00009 00010 #ifndef LADSPAPRESETMANAGER_H 00011 #define LADSPAPRESETMANAGER_H 00012 00013 #include "ladspapreset.h" 00014 00015 #define LADSPA_PRESET_PATH "ladspa_presets" 00016 00017 class LADSPAPresetManager 00018 { 00019 public: 00020 LADSPAPresetManager(); 00021 ~LADSPAPresetManager(); 00022 00023 unsigned int getPresetCount(); 00024 LADSPAPreset * getPreset(unsigned int i); 00025 00026 private: 00027 LADSPAPresetVector m_Presets; 00028 unsigned int m_iPresetCount; 00029 }; 00030 00031 #endif