blob: f13b2e3cf811ee405eca77a7620b33d1da8b7885 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "html.h"
#include "el_break.h"
litehtml::el_break::el_break(const std::shared_ptr<litehtml::document>& doc) : html_tag(doc)
{
}
bool litehtml::el_break::is_break() const
{
return true;
}
|