diff options
| author | Manuel Traut <manut@mecka.net> | 2012-06-03 02:56:00 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2012-06-03 02:56:00 +0200 |
| commit | 008f8c3240b0ee70dfbba4898f56f57529334945 (patch) | |
| tree | 0bca21a93f4f7e39312bf45467a7ab810b2a1beb /io/distrio_io.cpp | |
| parent | 50d93b3af6ed78b092f4610716cfdbe8ca4251f7 (diff) | |
io: add timestamps to analog/digital interfaces
- used to store time of last update
Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'io/distrio_io.cpp')
| -rw-r--r-- | io/distrio_io.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/io/distrio_io.cpp b/io/distrio_io.cpp index e102dbd..deae171 100644 --- a/io/distrio_io.cpp +++ b/io/distrio_io.cpp @@ -71,6 +71,18 @@ Distrio_Digital_i::~Distrio_Digital_i (void) // Add your implementation here } +::Distrio::Timestamp Distrio_Digital_i::last_update ( + void) +{ + // Add your implementation here +} + +void Distrio_Digital_i::last_update ( + const ::Distrio::Timestamp & last_update) +{ + // Add your implementation here +} + ::CORBA::Long Distrio_Digital_i::id ( void) { @@ -130,6 +142,18 @@ Distrio_Analog_i::~Distrio_Analog_i (void) // Add your implementation here } +::Distrio::Timestamp Distrio_Analog_i::last_update ( + void) +{ + // Add your implementation here +} + +void Distrio_Analog_i::last_update ( + const ::Distrio::Timestamp & last_update) +{ + // Add your implementation here +} + ::CORBA::Long Distrio_Analog_i::id ( void) { |
