blob: 972bc8a2f07892e62925c2bf2cc8b45974d63580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: mpevent.cpp,v 1.1 2005/05/08 17:01:30 wschweer Exp $
//
// (C) Copyright 2002-2004 Werner Schweer (ws@seh.de)
//=========================================================
#include "midievent.h"
//---------------------------------------------------------
// MEvent
//---------------------------------------------------------
MEvent::MEvent(unsigned t, int tpe, const unsigned char* data, int len)
{
_time = t;
edata.setData(data, len);
_type = tpe;
}
|