13
0
livetrax/libs/surfaces/mackie/test.cc
Paul Davis 449aab3c46 rollback to 3428, before the mysterious removal of libs/* at 3431/3432
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
2008-06-02 21:41:35 +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;
}