IP MIDI debugging
[ardour.git] / libs / midi++2 / miditrace.cc
index d7c65d9f29b78daf0f142eae4fe4203616c1df32..1b8c107b87f33071fdf5954b1df04330a980acbb 100644 (file)
@@ -1,8 +1,27 @@
+/*
+    Copyright (C) 2012 Paul Davis
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 #include <cstdio>
 #include <fcntl.h>
 
-#include <pbd/error.h>
-#include <pbd/textreceiver.h>
+#include "pbd/error.h"
+#include "pbd/textreceiver.h"
 
 Transmitter error (Transmitter::Error);
 Transmitter info (Transmitter::Info);
@@ -11,7 +30,6 @@ Transmitter fatal (Transmitter::Fatal);
 TextReceiver text_receiver ("mmctest");
 
 #include "midi++/port.h"
-#include "midi++/port_request.h"
 #include "midi++/manager.h"
 
 using namespace MIDI;
@@ -19,7 +37,7 @@ using namespace MIDI;
 Port *port;
 PortRequest midi_device;
 
-int 
+int
 setup_midi ()
 
 {
@@ -31,16 +49,16 @@ setup_midi ()
        if ((port = MIDI::Manager::instance()->add_port (midi_device)) == 0) {
                info << "MIDI port is not valid" << endmsg;
                return -1;
-       } 
+       }
 
        return 0;
 }
 
-main (int argc, char *argv[]) 
+main (int argc, char *argv[])
 
 {
        byte buf[1];
-       
+
        text_receiver.listen_to (error);
        text_receiver.listen_to (info);
        text_receiver.listen_to (fatal);
@@ -57,7 +75,7 @@ main (int argc, char *argv[])
                        error << "cannot read byte"
                              << endmsg;
                        break;
-               } 
+               }
        }
 }