16 lines
328 B
C++
16 lines
328 B
C++
#pragma once
|
|
|
|
#include "../../Include/RmlUi/Core/ElementDocument.h"
|
|
|
|
namespace Rml {
|
|
namespace Debugger {
|
|
|
|
class ElementDebugDocument : public ElementDocument {
|
|
public:
|
|
RMLUI_RTTI_DeclareWithParent(ElementDebugDocument, ElementDocument)
|
|
|
|
ElementDebugDocument(const String& tag);
|
|
};
|
|
|
|
} // namespace Debugger
|
|
} // namespace Rml
|