one less annoying compiler warning.
[ardour.git] / libs / surfaces / mackie / types.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 "types.h"
21
22 namespace Mackie
23 {
24 LedState on( LedState::on );
25 LedState off( LedState::off );
26 LedState flashing( LedState::flashing );
27 LedState none( LedState::none );
28
29 std::ostream & operator << ( std::ostream & os, const ControlState & cs )
30 {
31         os << "ControlState { ";
32         os << "pos: " << cs.pos;
33         os << ", ";
34         os << "sign: " << cs.sign;
35         os << ", ";
36         os << "delta: " << cs.delta;
37         os << ", ";
38         os << "ticks: " << cs.ticks;
39         os << ", ";
40         os << "led_state: " << cs.led_state.state();
41         os << ", ";
42         os << "button_state: " << cs.button_state;
43         os << " }";
44
45         return os;
46 }
47
48 }