35 #include <auterion_sdk/exception/exception.hpp>
57 T
getSetting(
const std::string& name,
const T& default_value) {
58 static_assert(std::is_same<T, double>::value || std::is_same<T, bool>::value ||
59 std::is_same<T, std::string>::value || std::is_same<T, int>::value,
60 "Only double, bool, string and int are supported");
90 std::string getSetting<std::string>(
const std::string& name,
const std::string& default_value);
bool getSetting< bool >(const std::string &name, const bool &default_value)
Specialization of getSetting function for bool type.
T getSetting(const std::string &name, const T &default_value)
Retrieve an app's setting value given its name.
Definition: settings.hpp:57
double getSetting< double >(const std::string &name, const double &default_value)
Specialization of getSetting function for double type.
int getSetting< int >(const std::string &name, const int &default_value)
Specialization of getSetting function for int type.