![]() |
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 LADSPALOADER_H 00011 #define LADSPALOADER_H 00012 00013 #include "ladspaplugin.h" 00014 #include "ladspalibrary.h" 00015 00016 class LADSPALoader 00017 { 00018 public: 00019 LADSPALoader(); 00020 ~LADSPALoader(); 00021 00022 const LADSPAPlugin * getByIndex(uint index); 00023 LADSPAPlugin * getByLabel(QString label); 00024 00025 private: 00026 LADSPAPluginVector m_Plugins; 00027 LADSPALibraryList m_Libraries; 00028 unsigned int m_PluginCount; 00029 }; 00030 00031 #endif