Files
WeatherService/Service.h

11 lines
166 B
C++

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