MuseScore  3.4
Music composition and notation
noeffectgui.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseSynth
3 // Music Software Synthesizer
4 //
5 // Copyright (C) 2013 Werner Schweer
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2
9 // as published by the Free Software Foundation and appearing in
10 // the file LICENCE.GPL
11 //=============================================================================
12 
13 #include "effects/effectgui.h"
14 
15 namespace Ms {
16 
17 //---------------------------------------------------------
18 // NoEffectGui
19 //---------------------------------------------------------
20 
21 class NoEffectGui : public EffectGui {
22  Q_OBJECT
23 
24  virtual void updateValues() {}
25 
26  public:
27  NoEffectGui(Effect* e, QWidget* parent = 0);
28  };
29 
30 }
31 
Definition: effect.h:41
Definition: effectgui.h:24
Definition: aeolus.cpp:26
virtual void updateValues()
Definition: noeffectgui.h:24
NoEffectGui(Effect *e, QWidget *parent=0)
Definition: noeffect.cpp:37
Definition: noeffectgui.h:21