Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
DataLoggerValuesExporter.hpp
Go to the documentation of this file.
1#ifndef DATALOGGERVALUESEXPORTER_HPP
2#define DATALOGGERVALUESEXPORTER_HPP
3
4#include "core/types.hpp"
5
6#include <map>
7#include <optional>
8#include <string>
9
10namespace iv::iofile
11{
12
14{
15public:
16 static bool exportDataLoggerValues(
17 const std::string &selectedPath,
18 const std::map<iv::types::timestamp, std::map<iv::types::channelId, std::optional<iv::types::channelValue>>>
19 &dataLoggerChannelValues);
20};
21
22}// namespace iv::iofile
23
24#endif//DATALOGGERVALUESEXPORTER_HPP
Definition DataLoggerValuesExporter.hpp:14
static bool exportDataLoggerValues(const std::string &selectedPath, const std::map< iv::types::timestamp, std::map< iv::types::channelId, std::optional< iv::types::channelValue > > > &dataLoggerChannelValues)
Definition DataLoggerValuesExporter.cpp:12
Definition ChannelsImporterExporter.cpp:15
uint64_t timestamp
Definition types.hpp:21
std::string channelId
Definition types.hpp:66