ladybird/Libraries/LibHTML/DOM/HTMLHRElement.h

10 lines
199 B
C
Raw Normal View History

#pragma once
#include <LibHTML/DOM/HTMLElement.h>
class HTMLHRElement : public HTMLElement {
public:
HTMLHRElement(Document&, const String& tag_name);
virtual ~HTMLHRElement() override;
};