]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/turnout.h
Rewrite command/reply system
[r2c2.git] / source / libmarklin / turnout.h
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2006-2008 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
29 public:
30         sigc::signal<void, unsigned> signal_route_changed;
31
32         Turnout(Control &, unsigned);
33
34         void     set_route(unsigned);
35         unsigned get_address() const { return addr; }
36         unsigned get_route() const   { return route; }
37 private:
38         void command(bool);
39         void status_reply(const Reply &);
40         bool switch_timeout();
41         void turnout_event(unsigned, bool);
42 };
43
44 } // namespace Marklin
45
46 #endif