X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fmidi%2B%2B2%2Fmmctest.cc;h=e81126cba7a9289eaad66a2d21091ac213d25325;hb=567c0a8f5321f70f13e8e0c4c78725ce4521608b;hp=062f6e8d3258d93d4555bfd2ccfcc9cc905217e3;hpb=f7f9d6fdc40248b190ec9c6e1a886261d55777ae;p=ardour.git diff --git a/libs/midi++2/mmctest.cc b/libs/midi++2/mmctest.cc index 062f6e8d32..e81126cba7 100644 --- a/libs/midi++2/mmctest.cc +++ b/libs/midi++2/mmctest.cc @@ -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 #include -#include -#include +#include "pbd/error.h" +#include "pbd/textreceiver.h" Transmitter error (Transmitter::Error); Transmitter info (Transmitter::Info); @@ -24,7 +43,7 @@ MachineControl *mmc; MachineControl::CommandSignature cs; MachineControl::ResponseSignature rs; -int +int setup_midi () { @@ -36,7 +55,7 @@ setup_midi () if ((port = MIDI::Manager::instance()->add_port (midi_device)) == 0) { info << "MIDI port is not valid" << endmsg; return -1; - } + } mmc = new MachineControl (*port, 0.0, cs, rs); @@ -83,7 +102,7 @@ main (int argc, char *argv[]) { byte buf[1]; - + text_receiver.listen_to (error); text_receiver.listen_to (info); text_receiver.listen_to (fatal); @@ -105,7 +124,7 @@ main (int argc, char *argv[]) error << "cannot read byte" << endmsg; break; - } + } } }