FileSystemIndexer v0.1.2-beta
File System Indexer - An API to index files from your system
Loading...
Searching...
No Matches
FSI_temperature.hpp
Go to the documentation of this file.
1#ifndef INCLUDE_TEMPERATURE_FSI_TEMPERATURE_HPP_
2#define INCLUDE_TEMPERATURE_FSI_TEMPERATURE_HPP_
3
4#include <string>
5
7{
8 /**
9 * @brief Wrapper for `FSI_temperatureConvertCelTo()` function
10 * @param from Convert to from Celcius
11 * @param to The value of the temperature
12 * @return The exact temperature
13 */
14 double convertTo(const std::string &from, const double &to);
15
16 /**
17 * @brief Wrapper for `FSI_temperatureConvertCelFrom()` function
18 * @param from The value of the temperature
19 * @param to From Celcius to the temperature
20 * @return The exact temperature
21 */
22 double convertFrom(const std::string &to, const double &from);
23}
24
25#endif // INCLUDE_TEMPERATURE_FSI_TEMPERATURE_HPP_
26
double convertFrom(const std::string &to, const double &from)
Wrapper for FSI_temperatureConvertCelFrom() function.
double convertTo(const std::string &from, const double &to)
Wrapper for FSI_temperatureConvertCelTo() function.