22 #ifndef GNSS_SDR_STRING_CONVERTER_H 23 #define GNSS_SDR_STRING_CONVERTER_H 38 bool convert(
const std::string& value,
bool default_value);
39 int64_t convert(
const std::string& value, int64_t default_value);
40 uint64_t convert(
const std::string& value, uint64_t default_value);
41 int32_t convert(
const std::string& value, int32_t default_value);
42 uint32_t convert(
const std::string& value, uint32_t default_value);
43 int16_t convert(
const std::string& value, int16_t default_value);
44 uint16_t convert(
const std::string& value, uint16_t default_value);
45 float convert(
const std::string& value,
float default_value);
46 double convert(
const std::string& value,
double default_value);
49 #endif // GNSS_SDR_STRING_CONVERTER_H Class that interprets the contents of a string and converts it into different types.