MuseScore/synthesizer/synthesizergui.cpp
2013-05-13 19:43:59 +02:00

28 lines
798 B
C++

//=============================================================================
// MuseSynth
// Music Software Synthesizer
//
// Copyright (C) 2013 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#include "synthesizergui.h"
#include "synthesizer.h"
namespace Ms {
//---------------------------------------------------------
// SynthesizerGui
//---------------------------------------------------------
SynthesizerGui::SynthesizerGui(Synthesizer* s)
: QWidget(0)
{
_synthesizer = s;
}
}