Create Service.h

This commit is contained in:
2026-04-21 10:30:31 +03:00
parent 0aa3be643e
commit 7cad0f8daf

9
Service.h Normal file
View File

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