blob: 899f27f04123effa4d0b87e86084cff4531cd16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "el_body.h"
#include "document.h"
litehtml::el_body::el_body(const std::shared_ptr<litehtml::document>& doc) : litehtml::html_tag(doc)
{
}
bool litehtml::el_body::is_body() const
{
return true;
}
|