| 249 | } |
| 250 | |
| 251 | bool getTimeLast(const KeyType &ID, double& Timestamp) const |
| 252 | { |
| 253 | if(this->checkID(ID)) |
| 254 | { |
| 255 | Timestamp = std::prev(_DataStreams.at(ID).end())->first; |
| 256 | return true; |
| 257 | } |
| 258 | else |
| 259 | { |
| 260 | return false; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | bool getTimeNext(const KeyType &ID, const double Timestamp, double& NextTimeStamp) const |
| 265 | { |
no test coverage detected