MuseScore/main/modulessetup.h
2020-03-18 11:23:46 +02:00

47 lines
1.4 KiB
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2019 MuseScore BVBA and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#ifndef MODULESSETUP_H
#define MODULESSETUP_H
#include <QList>
#include "interfaces/abstractmodulesetup.h"
//---------------------------------------------------------
// ModulesSetup
//---------------------------------------------------------
class ModulesSetup {
public:
static ModulesSetup* instance() {
static ModulesSetup s;
return &s;
}
void setup();
private:
Q_DISABLE_COPY(ModulesSetup)
ModulesSetup();
QList<AbstractModuleSetup*> m_modulesSetupList;
};
#endif // MODULESSETUP_H