9 lines
172 B
C++
9 lines
172 B
C++
#include "Service.h"
|
|
#include <string>
|
|
|
|
class XmlService : public Service {
|
|
public:
|
|
virtual Weather getWeather(std::string s) override;
|
|
virtual ~XmlService() {}
|
|
};
|