CLAM-Development  1.4.0
MIDIMessage.cxx
Go to the documentation of this file.
1 #include "MIDIMessage.hxx"
2 
3 namespace MIDI
4 {
5 
6 std::ostream& operator<< (std::ostream &os, const Message& m)
7 {
8  return os << int(m[0]) << ", " << int(m[1]) << ", " << int(m[2]) << ", " << int(m[3]) << std::endl;
9 }
10 
11 }