Files
WeatherService/Service.h
2026-04-21 10:30:31 +03:00

10 lines
157 B
C++

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