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