haiku/src/kits/midi/MidiEvent.cpp
jerl1 eac71506d6 Some correction, and class BMidiStore.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2047 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-11-21 19:23:22 +00:00

27 lines
508 B
C++

/**
* @file MidiEvent.cpp
*
* @author Matthijs Hollemans
* @author Paul Stadler
*/
#include "MidiEvent.h"
//------------------------------------------------------------------------------
BMidiEvent::BMidiEvent()
{
opcode = OP_NONE;
}
//------------------------------------------------------------------------------
BMidiEvent::~BMidiEvent()
{
if (opcode == OP_SYSTEM_EXCLUSIVE)
delete systemExclusive.data;
}
//------------------------------------------------------------------------------