1 2 3 4 5 6 7 8 9 10 11 12
#include "html.h" #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; }