]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/turnout.h
ae6865406523007285bf34ba561ae55105b1375a
[r2c2.git] / source / libmarklin / turnout.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2009 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #ifndef LIBMARKLIN_TURNOUT_H_
9 #define LIBMARKLIN_TURNOUT_H_
10
11 #include <list>
12 #include <map>
13 #include <string>
14 #include <sigc++/sigc++.h>
15 #include "constants.h"
16
17 namespace Marklin {
18
19 class Control;
20 class Reply;
21
22 class Turnout
23 {
24 private:
25         Control  &control;
26         unsigned addr;
27         unsigned route;
28         bool     dual;
29
30 public:
31         sigc::signal<void, unsigned> signal_route_changed;
32
33         Turnout(Control &, unsigned, bool =false);
34
35         void     set_route(unsigned);
36         unsigned get_address() const { return addr; }
37         unsigned get_route() const   { return route; }
38 private:
39         void command(bool);
40         void status_reply(const Reply &, bool);
41         bool switch_timeout();
42         void turnout_event(unsigned, bool);
43 };
44
45 } // namespace Marklin
46
47 #endif