Create Service.h #1

Merged
pavetr merged 1 commits from dev into main 2026-04-21 07:32:23 +00:00

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;
};