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