Realised XML Service

This commit is contained in:
2026-04-21 11:06:34 +03:00
parent effb6385c0
commit 969251661c
6 changed files with 15275 additions and 0 deletions

8
XmlService.h Normal file
View File

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