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