![]() |
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 #include "dlgladspa.h" 00011 #include "ladspaview.h" 00012 #include "mixxx.h" 00013 00014 DlgLADSPA::DlgLADSPA(QWidget* parent) : QDialog(parent) 00015 { 00016 setWindowTitle("LADSPA"); 00017 //resize(580, 280); 00018 00019 m_pView = new LADSPAView(this); 00020 } 00021 00022 DlgLADSPA::~DlgLADSPA() 00023 { 00024 delete m_pView; 00025 }