File: el_title.h

package info (click to toggle)
litehtml 0.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,288 kB
  • sloc: ansic: 30,263; cpp: 15,397; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef LH_EL_TITLE_H
#define LH_EL_TITLE_H

#include "html_tag.h"

namespace litehtml
{
	class el_title : public html_tag
	{
	public:
		el_title(const std::shared_ptr<litehtml::document>& doc);
		virtual ~el_title();

	protected:
		virtual void	parse_attributes() override;
	};
}

#endif  // LH_EL_TITLE_H