From 7cad0f8daf1b6f65d85f461332c57d74f9a7a24c Mon Sep 17 00:00:00 2001 From: Pavetr Date: Tue, 21 Apr 2026 10:30:31 +0300 Subject: [PATCH] Create Service.h --- Service.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Service.h diff --git a/Service.h b/Service.h new file mode 100644 index 0000000..f884020 --- /dev/null +++ b/Service.h @@ -0,0 +1,9 @@ +#include +#include "Weather.h" + +class Service { +public: + virtual ~Service() = default; + + virtual Weather getWeather(std::string s) = 0; +};