summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/test.cc
blob: 351058523f7aecfa343cbc507ea3276f75964b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>
#include <cstdarg>
#include <iomanip>

#include "midi_byte_array.h"

using namespace std;

namespace MIDI {
	typedef unsigned char byte;
	byte sysex = 0xf0;
	byte eox = 0xf7;
}

int main()
{
	MidiByteArray bytes( 4, 0xf0, 0x01, 0x03, 0x7f );
	cout << bytes << endl;
	return 0;
}