X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibmarklin%2Fsensor.h;h=930b15fff890be651f82cbe1a0453cfb19f7be1a;hb=3e9c210ddc036cd015228504cc0803c909e27f84;hp=d3db6367a2b7b40ed9d0a232906c2f23561b4513;hpb=52cbe8d99669f843f8f75c51128e2748584dd03a;p=r2c2.git diff --git a/source/libmarklin/sensor.h b/source/libmarklin/sensor.h index d3db636..930b15f 100644 --- a/source/libmarklin/sensor.h +++ b/source/libmarklin/sensor.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of the MSP Märklin suite +Copyright © 2006-2008 Mikkosoft Productions, Mikko Rasa +Distributed under the GPL +*/ + #ifndef LIBMARKLIN_SENSOR_H_ #define LIBMARKLIN_SENSOR_H_ @@ -12,19 +19,21 @@ class Control; class Sensor { +private: + Control &control; + unsigned addr; + bool state; + Msp::Time::TimeStamp off_timeout; + public: sigc::signal signal_state_changed; Sensor(Control &, unsigned); + unsigned get_address() const { return addr; } bool get_state() const { return state; } void tick(); private: - Control &control; - unsigned addr; - bool state; - Msp::Time::TimeStamp off_timeout; - void sensor_event(unsigned, bool); };