MCP: remove debugging related to selection that turned out to be about some JACK...
[ardour.git] / libs / surfaces / mackie / types.cc
1 #include "types.h"
2
3 namespace Mackie
4 {
5 LedState on( LedState::on );
6 LedState off( LedState::off );
7 LedState flashing( LedState::flashing );
8 LedState none( LedState::none );
9
10 std::ostream & operator << ( std::ostream & os, const ControlState & cs )
11 {
12         os << "ControlState { ";
13         os << "pos: " << cs.pos;
14         os << ", ";
15         os << "sign: " << cs.sign;
16         os << ", ";
17         os << "delta: " << cs.delta;
18         os << ", ";
19         os << "ticks: " << cs.ticks;
20         os << ", ";
21         os << "led_state: " << cs.led_state.state();
22         os << ", ";
23         os << "button_state: " << cs.button_state;
24         os << " }";
25
26         return os;
27 }
28
29 }