Ardour  8.7-14-g57a6773833
surfaces/launch_control_xl/midi_byte_array.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018 Térence Clastres <t.clastres@gmail.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 #ifndef midi_byte_array_h
19 #define midi_byte_array_h
20 
21 #include <iostream>
22 #include <vector>
23 
24 #include <boost/shared_array.hpp>
25 
26 //#include <midi++/types.h>
27 namespace MIDI {
28  typedef unsigned char byte;
29 }
30 
48 class MidiByteArray : public std::vector<MIDI::byte>
49 {
50 public:
51  MidiByteArray() : std::vector<MIDI::byte>() {}
52 
53  MidiByteArray( size_t count, MIDI::byte array[] );
54 
55  bool compare_n (const MidiByteArray& other, MidiByteArray::size_type len) const;
56 
60  MidiByteArray( size_t count, MIDI::byte first, ... );
61 
63  void copy( size_t count, MIDI::byte arr[] );
64 };
65 
68 
70 MidiByteArray & operator << ( MidiByteArray & mba, const std::string & );
71 
74 
76 std::ostream & operator << ( std::ostream & os, const MidiByteArray & mba );
77 
78 #endif
void copy(size_t count, MIDI::byte arr[])
copy the given number of bytes from the given array
MidiByteArray(size_t count, MIDI::byte array[])
bool compare_n(const MidiByteArray &other, MidiByteArray::size_type len) const
MidiByteArray(size_t count, MIDI::byte first,...)
MidiByteArray & operator<<(MidiByteArray &mba, const MIDI::byte &b)
append the given byte to the end of the array