X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fmidi%2B%2B2%2Fmmctest.cc;h=e81126cba7a9289eaad66a2d21091ac213d25325;hb=965def3caf1250679cb83ee115db49e156acebce;hp=25ea964dedf4c47e0c0dfbeb506a3e18e1655109;hpb=d09f6b3016bacbc2871a8946cbb24ad705076509;p=ardour.git diff --git a/libs/midi++2/mmctest.cc b/libs/midi++2/mmctest.cc index 25ea964ded..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); @@ -11,11 +30,11 @@ Transmitter fatal (Transmitter::Fatal); TextReceiver text_receiver ("mmctest"); #include "midi++/port.h" -#include "midi++/port_request.h" #include "midi++/manager.h" #include "midi++/mmc.h" using namespace MIDI; +using namespace PBD; Port *port; PortRequest midi_device; @@ -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; - } + } } }