Upgrade to waf 1.6.7 and autowaf r52.
[ardour.git] / libs / surfaces / generic_midi / midiaction.cc
1 /*
2     Copyright (C) 2009-2010 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 #include <cstring>
20
21 #include "midi++/port.h"
22
23 #include "midiaction.h"
24 #include "generic_midi_control_protocol.h"
25
26 using namespace MIDI;
27
28 MIDIAction::MIDIAction (MIDI::Port& p)
29         : MIDIInvokable (p)
30 {
31 }
32
33 MIDIAction::~MIDIAction ()
34 {
35 }
36
37 int
38 MIDIAction::init (GenericMidiControlProtocol& ui, const std::string& invokable_name, MIDI::byte* msg_data, size_t data_sz)
39 {
40         MIDIInvokable::init (ui, invokable_name, msg_data, data_sz);
41         return 0;
42 }
43
44 void
45 MIDIAction::execute ()
46 {
47         _ui->access_action (_invokable_name);
48 }
49
50 XMLNode&
51 MIDIAction::get_state ()
52 {
53         XMLNode* node = new XMLNode ("MIDIAction");
54         return *node;
55 }
56
57 int
58 MIDIAction::set_state (const XMLNode& /*node*/, int /*version*/)
59 {
60         return 0;
61 }
62