]> git.tdb.fi Git - r2c2.git/blobdiff - source/libmarklin/sensor.h
Fix memory leaks and other bad stuff
[r2c2.git] / source / libmarklin / sensor.h
index d3db6367a2b7b40ed9d0a232906c2f23561b4513..45749ea28c142fe338436c378681b94a41fd0735 100644 (file)
@@ -1,3 +1,10 @@
+/* $Id$
+
+This file is part of the MSP Märklin suite
+Copyright © 2007-2008  Mikkosoft Productions, Mikko Rasa
+Distributed under the GPL
+*/
+
 #ifndef LIBMARKLIN_SENSOR_H_
 #define LIBMARKLIN_SENSOR_H_
 
@@ -15,16 +22,19 @@ class Sensor
 public:
        sigc::signal<void, bool> signal_state_changed;
 
-       Sensor(Control &, unsigned);
-       unsigned get_address() const { return addr; }
-       bool     get_state() const   { return state; }
-       void     tick();
 private:
-       Control  &control;
+       Control &control;
        unsigned addr;
-       bool     state;
+       bool state;
        Msp::Time::TimeStamp off_timeout;
 
+public:
+       Sensor(Control &, unsigned);
+
+       unsigned get_address() const { return addr; }
+       bool get_state() const { return state; }
+       void tick();
+private:
        void sensor_event(unsigned, bool);
 };