blob: 482bc9528170aa38760d06892c36638dc6c36cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}
|