]> git.tdb.fi Git - r2c2.git/blob - source/libmarklin/turnout.h
Add Id tags and copyright notices to files
[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
21 class Turnout
22 {
23 private:
24         Control  &control;
25         unsigned addr;
26         unsigned route;
27
28 public:
29         sigc::signal<void, unsigned> signal_route_changed;
30
31         Turnout(Control &, unsigned);
32
33         void     set_route(unsigned);
34         unsigned get_address() const { return addr; }
35         unsigned get_route() const   { return route; }
36 private:
37         void command(bool);
38         void status_reply(Error, const std::string &);
39         bool switch_timeout();
40         void turnout_event(unsigned, bool);
41 };
42
43 } // namespace Marklin
44
45 #endif