Add PDF writer.
This commit is contained in:
parent
c05b7b6315
commit
9c116b1efd
72 changed files with 1819 additions and 114 deletions
|
@ -1,12 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include "File.h"
|
||||
#include "XmlDocument.h"
|
||||
#include <string>
|
||||
|
||||
class XmlWriter
|
||||
{
|
||||
public:
|
||||
XmlWriter() = default;
|
||||
|
||||
void Write(File* file, XmlDocument* document);
|
||||
std::string ToString(XmlDocument* document);
|
||||
|
||||
private:
|
||||
std::string ToString(XmlElement* element, unsigned depth=0);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue