lots of changes to try to get the Mackie Control display be more useful and usable

This commit is contained in:
Paul Davis 2015-10-08 12:49:58 -04:00
parent 4677d047a5
commit 0cb1c7b58c
6 changed files with 177 additions and 91 deletions

View file

@ -88,8 +88,9 @@ ostream & operator << (ostream & os, const MidiByteArray & mba)
MidiByteArray & operator << (MidiByteArray & mba, const std::string & st)
{
for (string::const_iterator it = st.begin(); it != st.end(); ++it) {
mba << *it;
}
/* note that this assumes that "st" is ASCII encoded
*/
mba.insert (mba.end(), st.begin(), st.end());
return mba;
}