Merge pull request 'Create Service.h' (#1) from dev into main

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
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;
};