#ifndef RS_CONFIG_HPP #define RS_CONFIG_HPP #include #include class Configuration { public: bool readConfiguration(const std::string &file); const std::string &getSourcePath(); const std::vector> &getLibraries(); const std::vector> &getTargetPaths(); const std::vector> &getUsers(); private: std::vector> libraries; std::string source_path; std::vector> target_paths; std::vector> users; }; #endif