interface_influxdb.h 393 B

12345678910111213
  1. #ifndef INTERFACE_INFLUXDB_H
  2. #define INTERFACE_INFLUXDB_H
  3. #include <string>
  4. #include <map>
  5. #include <functional>
  6. void InfluxDBInit(std::string _influxDBURI, std::string _database, std::string _measurement, std::string _user, std::string _password);
  7. void InfluxDBdestroy();
  8. void InfluxDBPublish(std::string _key, std::string _content, std::string _timestamp);
  9. #endif //INTERFACE_INFLUXDB_H