NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / surfaces / frontier / tranzport / interface.cc
1 /*
2     Copyright (C) 2012 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "control_protocol/control_protocol.h"
21 #include "tranzport_control_protocol.h"
22
23 using namespace ARDOUR;
24
25 ControlProtocol*
26 new_tranzport_protocol (ControlProtocolDescriptor* descriptor, Session* s)
27 {
28         TranzportControlProtocol* tcp = new TranzportControlProtocol (*s);
29
30         if (tcp->set_active (true)) {
31                 delete tcp;
32                 return 0;
33         }
34
35         return tcp;
36
37 }
38
39 void
40 delete_tranzport_protocol (ControlProtocolDescriptor* descriptor, ControlProtocol* cp)
41 {
42         delete cp;
43 }
44
45 bool
46 probe_tranzport_protocol (ControlProtocolDescriptor* descriptor)
47 {
48         return TranzportControlProtocol::probe();
49 }
50
51 static ControlProtocolDescriptor tranzport_descriptor = {
52         name : "Tranzport",
53         id : "uri://ardour.org/surfaces/tranzport:0",
54         ptr : 0,
55         module : 0,
56         mandatory : 0,
57         supports_feedback : false,
58         probe : probe_tranzport_protocol,
59         initialize : new_tranzport_protocol,
60         destroy : delete_tranzport_protocol
61 };
62
63
64 extern "C" {
65 ControlProtocolDescriptor*
66 protocol_descriptor () {
67         return &tranzport_descriptor;
68 }
69 }
70