mirror of
https://review.haiku-os.org/haiku
synced 2025-02-13 09:09:03 +01:00
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2047 a95241bf-73f2-0310-859d-f6bbb57e9c96
27 lines
508 B
C++
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;
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|