merge with master, primarily for adrian's maximise-mixer change
[ardour.git] / libs / surfaces / mackie / test.cc
1 #include <iostream>
2 #include <string>
3 #include <sstream>
4 #include <vector>
5 #include <algorithm>
6 #include <cstdarg>
7 #include <iomanip>
8
9 #include "midi_byte_array.h"
10
11 using namespace std;
12
13 namespace MIDI {
14         typedef unsigned char byte;
15         byte sysex = 0xf0;
16         byte eox = 0xf7;
17 }
18
19 int main()
20 {
21         MidiByteArray bytes( 4, 0xf0, 0x01, 0x03, 0x7f );
22         cout << bytes << endl;
23         return 0;
24 }
25