summaryrefslogtreecommitdiff
path: root/muse2/synti/libsynti/mpevent.cpp.OLD
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2010-11-03 01:03:08 +0000
committerTim E. Real <termtech@rogers.com>2010-11-03 01:03:08 +0000
commit49720ad168e0abef844f10baf6d4f3968eb15318 (patch)
treeae71b0f5c66f46e60b8d6afb1d8b1379cd7f8aa1 /muse2/synti/libsynti/mpevent.cpp.OLD
parentba7a03030045602ce55c47a20a63fd72cfe10f47 (diff)
Removed mpevent(.h, .cpp) and evdata.h from /libsynti, conflicting with copies in /muse,
causing crashes. Version in /muse is newer. Should only be one version.
Diffstat (limited to 'muse2/synti/libsynti/mpevent.cpp.OLD')
-rw-r--r--muse2/synti/libsynti/mpevent.cpp.OLD22
1 files changed, 22 insertions, 0 deletions
diff --git a/muse2/synti/libsynti/mpevent.cpp.OLD b/muse2/synti/libsynti/mpevent.cpp.OLD
new file mode 100644
index 00000000..482bc952
--- /dev/null
+++ b/muse2/synti/libsynti/mpevent.cpp.OLD
@@ -0,0 +1,22 @@
+//=========================================================
+// MusE
+// Linux Music Editor
+// $Id: mpevent.cpp,v 1.1 2004/02/12 18:30:30 wschweer Exp $
+//
+// (C) Copyright 2002-2004 Werner Schweer (ws@seh.de)
+//=========================================================
+
+#include "mpevent.h"
+
+//---------------------------------------------------------
+// MEvent
+//---------------------------------------------------------
+
+MEvent::MEvent(unsigned t, int port, int tpe, const unsigned char* data, int len)
+ {
+ _time = t;
+ _port = port;
+ edata.setData(data, len);
+ _type = tpe;
+ }
+