diff options
author | Robert Jonsson <spamatica@gmail.com> | 2011-03-07 19:01:11 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2011-03-07 19:01:11 +0000 |
commit | e40fc849149dd97c248866a4a1d026dda5e57b62 (patch) | |
tree | b12b358f3b3a0608001d30403358f8443118ec5f /muse_qt4_evolution/synti/libsynti/mono.h | |
parent | 1bd4f2e8d9745cabb667b043171cad22c8577768 (diff) |
clean3
Diffstat (limited to 'muse_qt4_evolution/synti/libsynti/mono.h')
-rw-r--r-- | muse_qt4_evolution/synti/libsynti/mono.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/muse_qt4_evolution/synti/libsynti/mono.h b/muse_qt4_evolution/synti/libsynti/mono.h deleted file mode 100644 index f2f8bdf7..00000000 --- a/muse_qt4_evolution/synti/libsynti/mono.h +++ /dev/null @@ -1,47 +0,0 @@ -//========================================================= -// MusE -// Linux Music Editor -// software synthesizer helper library -// $Id: mono.h,v 1.4 2004/04/15 13:46:18 wschweer Exp $ -// -// (C) Copyright 2004 Werner Schweer (ws@seh.de) -//========================================================= - -#ifndef __SYNTH_MONO_H__ -#define __SYNTH_MONO_H - -#include <list> -#include "mess.h" - -//--------------------------------------------------------- -// PitchVelo -//--------------------------------------------------------- - -struct PitchVelo { - signed char channel; - signed char pitch; - signed char velo; - PitchVelo(signed char a, signed char b, signed char c) - : channel(a), pitch(b), velo(c) {} - }; - -//--------------------------------------------------------- -// MessMono -// implements some functions for monophone -// synthesizer -//--------------------------------------------------------- - -class MessMono : public Mess { - std::list<PitchVelo> pitchStack; - - protected: - virtual bool playNote(int channel, int pitch, int velo); - virtual void note(int channel, int pitch, int velo) = 0; - - public: - MessMono() : Mess(1) {} - virtual ~MessMono() {} - }; - -#endif - |