summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/MIDIEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/evoral/evoral/MIDIEvent.hpp')
-rw-r--r--libs/evoral/evoral/MIDIEvent.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/libs/evoral/evoral/MIDIEvent.hpp b/libs/evoral/evoral/MIDIEvent.hpp
index 1ce7074788..e8320c3e35 100644
--- a/libs/evoral/evoral/MIDIEvent.hpp
+++ b/libs/evoral/evoral/MIDIEvent.hpp
@@ -26,10 +26,6 @@
#include "evoral/Event.hpp"
#include "evoral/midi_events.h"
-#ifdef EVORAL_MIDI_XML
-class XMLNode;
-#endif
-
namespace Evoral {
/** MIDI helper functions for an Event.
@@ -49,14 +45,6 @@ public:
: Event<Time>(copy, alloc)
{}
-#ifdef EVORAL_MIDI_XML
- /** Event from XML ala http://www.midi.org/dtds/MIDIEvents10.dtd */
- MIDIEvent(const XMLNode& event);
-
- /** Event to XML ala http://www.midi.org/dtds/MIDIEvents10.dtd */
- boost::shared_ptr<XMLNode> to_xml() const;
-#endif
-
inline uint8_t type() const { return (this->_buf[0] & 0xF0); }
inline void set_type(uint8_t type) { this->_buf[0] = (0x0F & this->_buf[0])
| (0xF0 & type); }