13
0
livetrax/libs/surfaces/mackie/test.cc
David Robillard 99904735e0 Merged with trunk R1612.
git-svn-id: svn://localhost/ardour2/branches/midi@1614 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-03-18 06:07:08 +00:00

26 lines
376 B
C++

#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;
}