Small html cleanup
This commit is contained in:
parent
c102ebb6da
commit
31b479e9f6
27 changed files with 330 additions and 252 deletions
|
@ -1,15 +1,17 @@
|
|||
#pragma once
|
||||
#include <memory>
|
||||
|
||||
#include "XmlDocument.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
class HtmlDocument : public XmlDocument
|
||||
{
|
||||
public:
|
||||
|
||||
HtmlDocument();
|
||||
|
||||
static std::shared_ptr<HtmlDocument> Create();
|
||||
virtual ~HtmlDocument() = default;
|
||||
|
||||
static std::unique_ptr<HtmlDocument> Create();
|
||||
};
|
||||
|
||||
using HtmlDocumentPtr = std::shared_ptr<HtmlDocument>;
|
||||
using HtmlDocumentPtr = std::unique_ptr<HtmlDocument>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue