diff options
Diffstat (limited to 'include/Conf.hpp')
-rw-r--r-- | include/Conf.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp new file mode 100644 index 0000000..2b38e95 --- /dev/null +++ b/include/Conf.hpp @@ -0,0 +1,12 @@ +#ifndef SIBS_CONF_HPP +#define SIBS_CONF_HPP + +#include "Result.hpp" +#include <string> + +namespace sibs +{ + Result<std::string> readConf(const char *filepath); +} + +#endif //SIBS_CONF_HPP |