diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-06-20 16:01:32 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-06-20 16:01:32 +0200 |
commit | ae42b9c012e10972eb1e666d9d17d4903940b906 (patch) | |
tree | bfc8d31b973004d73f1c5281508f4bf028df671e /sensor/main | |
parent | 46fa473b481191288e2ca6d9279e099b303af012 (diff) | |
download | ble-toys-ae42b9c012e10972eb1e666d9d17d4903940b906.tar.gz ble-toys-ae42b9c012e10972eb1e666d9d17d4903940b906.tar.bz2 ble-toys-ae42b9c012e10972eb1e666d9d17d4903940b906.tar.xz ble-toys-ae42b9c012e10972eb1e666d9d17d4903940b906.zip |
o Adding a tool to add timestamps to each sample.
(old wip code)
Diffstat (limited to 'sensor/main')
-rw-r--r-- | sensor/main/sensor.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sensor/main/sensor.cpp b/sensor/main/sensor.cpp index a773e0b..be3d31e 100644 --- a/sensor/main/sensor.cpp +++ b/sensor/main/sensor.cpp @@ -53,6 +53,30 @@ std::istream& operator>>(std::istream& is, sample_format_type& type) { return is; } +std::ostream& operator<<(std::ostream& os, time_resolution const& type) { + if (type == time_resolution::SECONDS) { + os << "seconds"; + } else if(type == time_resolution::MILLISECONDS) { + os << "milliseconds"; + } + + return os; +} + +std::istream& operator>>(std::istream& is, time_resolution & type) { + string s; + + is >> s; + + if(s == "seconds") { + type = time_resolution::SECONDS; + } else if(s == "milliseconds") { + type = time_resolution::MILLISECONDS; + } + + return is; +} + template<> const o<long> SampleRecord::lexical_at(const SampleKey *key) const { auto value = at(key); |