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