#pragma once #include #include "Weather.h" class Service { public: virtual ~Service() = default; virtual Weather getWeather(std::string s) = 0; };