diff options
Diffstat (limited to 'attic/muse2-oom/muse2/muse/mixer/auxknob.h')
-rw-r--r-- | attic/muse2-oom/muse2/muse/mixer/auxknob.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/attic/muse2-oom/muse2/muse/mixer/auxknob.h b/attic/muse2-oom/muse2/muse/mixer/auxknob.h deleted file mode 100644 index c2b8ec7a..00000000 --- a/attic/muse2-oom/muse2/muse/mixer/auxknob.h +++ /dev/null @@ -1,33 +0,0 @@ -//========================================================= -// MusE -// Linux Music Editor -// $Id: auxknob.h,v 1.3 2003/11/08 15:10:18 wschweer Exp $ -// -// (C) Copyright 2000 Werner Schweer (ws@seh.de) -//========================================================= - -#ifndef __AUXKNOB_H__ -#define __AUXKNOB_H__ - -#include "knob.h" - -//--------------------------------------------------------- -// AuxKnob -//--------------------------------------------------------- - -class AuxKnob : public Knob { - Q_OBJECT - int idx; - - private slots: - void valueChanged(double v); - - signals: - void auxChanged(int, double); - - public: - AuxKnob(QWidget* parent, int idx); - }; - -#endif - |