#ifndef UTILS_RSEDATABASELOADER_H #define UTILS_RSEDATABASELOADER_H #include "model/MotorModel.h" #include #include #include namespace utils { class RSEDatabaseLoader { public: RSEDatabaseLoader(const std::string& filename); ~RSEDatabaseLoader(); private: std::vector motors; void buildAndAppendMotorModel(boost::property_tree::ptree& v); boost::property_tree::ptree tree; }; } // namespace utils #endif // UTILS_RSEDATABASELOADER_H