mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 14:20:17 +00:00
20 lines
475 B
C++
20 lines
475 B
C++
#pragma once
|
|
|
|
#include "../../Include/RmlUi/Core/XMLParser.h"
|
|
#include "../../Include/RmlUi/SVG/ElementSVG.h"
|
|
#include "../Core/XMLNodeHandlerDefault.h"
|
|
|
|
namespace Rml {
|
|
namespace SVG {
|
|
/**
|
|
Element Node handler that processes the SVG tag
|
|
*/
|
|
class XMLNodeHandlerSVG : public XMLNodeHandlerDefault {
|
|
public:
|
|
/// Called for element data
|
|
bool ElementData(XMLParser* parser, const String& data, XMLDataType type) override;
|
|
};
|
|
|
|
} // namespace SVG
|
|
} // namespace Rml
|