#ifndef NOOS_CONFIGREADER__H #define NOOS_CONFIGREADER__H #include #include namespace noos { class urlreader { public: urlreader(const std::string& file = ""); ~urlreader(); void load_config(const std::string& file); void write_config(); std::vector& get_urls(); void reload(); private: std::vector urls; std::string filename; }; } #endif