#ifndef MOTORMODELDATABASE_H #define MOTORMODELDATABASE_H #include #include "model/MotorModel.h" class MotorModelDatabase { public: MotorModelDatabase(); std::vector findMotorsByManufacturer(const std::string& manu); std::vector findMotersByImpulseClass(const std::string& imClass); MotorModel getMotorByName(const std::string& name); std::vector> getThrustCurveByName(const std::string& motorName); private: std::vector motors; }; #endif // MOTORMODELDATABASE_H