FileSystemIndexer v0.1.2-beta
File System Indexer - An API to index files from your system
Loading...
Searching...
No Matches
fsi::modules::tc Namespace Reference

Functions

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.

Function Documentation

◆ convertFrom()

double fsi::modules::tc::convertFrom ( const std::string & to,
const double & from )

Wrapper for FSI_temperatureConvertCelFrom() function.

Parameters
fromThe value of the temperature
toFrom Celcius to the temperature
Returns
The exact temperature

Definition at line 9 of file FSI_temperature.cpp.

10 { return FSI_temperatureConvertCelFrom(to.c_str(), from); }
double FSI_temperatureConvertCelFrom(const char *to, const double from)
Convert from from to Celcius as a double.

References FSI_temperatureConvertCelFrom().

Here is the call graph for this function:

◆ convertTo()

double fsi::modules::tc::convertTo ( const std::string & from,
const double & to )

Wrapper for FSI_temperatureConvertCelTo() function.

Parameters
fromConvert to from Celcius
toThe value of the temperature
Returns
The exact temperature

Definition at line 6 of file FSI_temperature.cpp.

7 { return FSI_temperatureConvertCelTo(from.c_str(), to); }
double FSI_temperatureConvertCelTo(const char *from, const double to)
Convert Celcius to from as a double.

References FSI_temperatureConvertCelTo().

Here is the call graph for this function: