stuff-from-scratch/src/web/xml/XmlWriter.h
2022-12-01 17:13:54 +00:00

14 lines
177 B
C++

#pragma once
#include <string>
class XmlDocument;
class XmlElement;
class XmlWriter
{
public:
XmlWriter() = default;
std::string toString(XmlDocument* document);
};