Merge branch 'master' into cairocanvas
[ardour.git] / libs / surfaces / mackie / midi_byte_array.h
index e77ece1b88a6e8d96c16b53f49ea8e0d0175442d..372e48ab90b59764c5afbf9ef235016b46c6a673 100644 (file)
@@ -57,9 +57,6 @@ public:
        */
        MidiByteArray( size_t count, MIDI::byte first, ... );
        
-       /// return smart pointer to a copy of the bytes
-       boost::shared_array<MIDI::byte> bytes() const;
-               
        /// copy the given number of bytes from the given array
        void copy( size_t count, MIDI::byte arr[] );
 };
@@ -67,6 +64,9 @@ public:
 /// append the given byte to the end of the array
 MidiByteArray & operator << ( MidiByteArray & mba, const MIDI::byte & b );
 
+/// append the given string to the end of the array
+MidiByteArray & operator << ( MidiByteArray & mba, const std::string & );
+
 /// append the given array to the end of this array
 MidiByteArray & operator << ( MidiByteArray & mba, const MidiByteArray & barr );