BlinkenArea - GitList
Repositories
Blog
Wiki
permissioner
Code
Commits
Branches
Tags
Search
Tree:
16dd948
Branches
Tags
master
permissioner
permissionerd
src
Config.h
begin of permissioner config parsing
Stefan Schuermans
commited
16dd948
at 2020-08-16 16:14:27
Config.h
Blame
History
Raw
#ifndef CONFIG_H #define CONFIG_H #include "Tree.h" #include <boost/filesystem.hpp> #include <map> #include <string> /// configuration file class Config { public: /** * @brief parse configuration file * @param[in] configFileName name of configuation file * @throws std::exception if something goes wrong */ void parseFile(std::string const &configFileName); protected: std::map<boost::filesystem::path, Tree> trees; }; #endif // #ifndef CONFIG_H