2008-06-02 17:41:35 -04:00
|
|
|
#include "mackie_control_protocol.h"
|
|
|
|
|
|
|
|
#include "midi_byte_array.h"
|
|
|
|
#include "surface_port.h"
|
|
|
|
|
2009-10-30 11:30:22 -04:00
|
|
|
#include "pbd/pthread_utils.h"
|
|
|
|
#include "pbd/error.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-10-30 11:30:22 -04:00
|
|
|
#include "midi++/types.h"
|
|
|
|
#include "midi++/port.h"
|
|
|
|
#include "midi++/manager.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <errno.h>
|
2009-10-30 11:30:22 -04:00
|
|
|
#include <string.h>
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Mackie;
|
|
|
|
using namespace PBD;
|
|
|
|
|