![]() |
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 DLGLADSPA_H 00011 #define DLGLADSPA_H 00012 00013 #include <QtGui> 00014 00015 class MixxxApp; 00016 class LADSPAView; 00017 00018 class DlgLADSPA : public QDialog 00019 { 00020 Q_OBJECT 00021 00022 public: 00023 DlgLADSPA(QWidget* parent); 00024 ~DlgLADSPA(); 00025 00026 private: 00027 LADSPAView *m_pView; 00028 }; 00029 00030 #endif