Cogs.Core
el_body.h
1#ifndef LH_EL_BODY_H
2#define LH_EL_BODY_H
3
4#include "html_tag.h"
5
6namespace litehtml
7{
8 class el_body : public html_tag
9 {
10 public:
11 el_body(const std::shared_ptr<litehtml::document>& doc);
12 virtual ~el_body();
13
14 virtual bool is_body() const override;
15 };
16}
17
18#endif // LH_EL_BODY_H