11 lines
166 B
C++
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;
|
|
};
|