You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
15 lines
347 B
#ifndef DIVELEMENT_H |
|
#define DIVELEMENT_H |
|
|
|
#include "Element.h" |
|
#include "../components/Component.h" |
|
#include "../components/TextComponent.h" |
|
#include "../../parsers/markup/TextNode.h" |
|
|
|
class DIVElement : public Element { |
|
public: |
|
//DIVElement(); |
|
virtual std::unique_ptr<Component> renderer(const ElementRenderRequest &request); |
|
}; |
|
|
|
#endif
|
|
|