Compare commits

..

2 Commits

Author SHA1 Message Date
3e68a2959f Merge pull request 'Create Service.h' (#1) from dev into main
Reviewed-on: #1
2026-04-21 07:32:23 +00:00
7cad0f8daf Create Service.h 2026-04-21 10:30:31 +03: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;
};