#ifndef ALCONFIG_H #define ALCONFIG_H #include #include void ReadALConfig(); bool GetConfigValueBool(const char *devName, const char *blockName, const char *keyName, bool def); std::optional ConfigValueStr(const char *devName, const char *blockName, const char *keyName); std::optional ConfigValueInt(const char *devName, const char *blockName, const char *keyName); std::optional ConfigValueUInt(const char *devName, const char *blockName, const char *keyName); std::optional ConfigValueFloat(const char *devName, const char *blockName, const char *keyName); std::optional ConfigValueBool(const char *devName, const char *blockName, const char *keyName); #endif /* ALCONFIG_H */