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/poly.cpp | |
parent | 1bd4f2e8d9745cabb667b043171cad22c8577768 (diff) |
clean3
Diffstat (limited to 'muse_qt4_evolution/synti/libsynti/poly.cpp')
-rw-r--r-- | muse_qt4_evolution/synti/libsynti/poly.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/muse_qt4_evolution/synti/libsynti/poly.cpp b/muse_qt4_evolution/synti/libsynti/poly.cpp deleted file mode 100644 index e76fe966..00000000 --- a/muse_qt4_evolution/synti/libsynti/poly.cpp +++ /dev/null @@ -1,35 +0,0 @@ -//========================================================= -// MusE -// Linux Music Editor -// software synthesizer helper library -// $Id: poly.cpp,v 1.3 2004/06/01 14:25:50 wschweer Exp $ -// -// (C) Copyright 2004 Werner Schweer (ws@seh.de) -//========================================================= - -#include "poly.h" -#include "muse/midictrl.h" - -//--------------------------------------------------------- -// playNote -//--------------------------------------------------------- - -bool MessPoly::playNote(int /*channel*/, int /*pitch*/, int /*velo*/) - { - return false; - } - -//--------------------------------------------------------- -// setController -//--------------------------------------------------------- - -bool MessPoly::setController(int /*channel*/, int num, int /*val*/) - { - switch(num) { - case CTRL_VOLUME: - case CTRL_EXPRESSION: - break; - } - return false; - } - |