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.
14 lines
324 B
14 lines
324 B
#ifndef LIELEMENT_H |
|
#define LIELEMENT_H |
|
|
|
#include "Element.h" |
|
#include "../components/Component.h" |
|
#include "../components/TextComponent.h" |
|
#include "../../parsers/markup/TextNode.h" |
|
|
|
class LIElement : public Element { |
|
public: |
|
virtual std::unique_ptr<Component> renderer(const ElementRenderRequest &request); |
|
}; |
|
|
|
#endif
|
|
|