#ifndef SIM_WINDMODEL_H #define SIM_WINDMODEL_H #include namespace sim { class WindModel { public: WindModel(); virtual ~WindModel(); virtual std::tuple getWindSpeed(double x, double y, double z); }; } // namespace sim #endif // SIM_WINDMODEL_H