00001 #include "MIDIMessage.hxx" 00002 00003 namespace MIDI 00004 { 00005 00006 std::ostream& operator<< (std::ostream &os, const Message& m) 00007 { 00008 return os << int(m[0]) << ", " << int(m[1]) << ", " << int(m[2]) << ", " << int(m[3]) << std::endl; 00009 } 00010 00011 }