Photon 1.0.0
Loading...
Searching...
No Matches
el_anchor.h
Go to the documentation of this file.
1#ifndef LH_EL_ANCHOR_H
2#define LH_EL_ANCHOR_H
3
4#include "html_tag.h"
5
6namespace litehtml
7{
8 class el_anchor : public html_tag
9 {
10 public:
11 explicit el_anchor(const std::shared_ptr<litehtml::document>& doc);
12
13 void on_click() override;
14 void apply_stylesheet(const litehtml::css& stylesheet) override;
15 };
16}
17
18#endif // LH_EL_ANCHOR_H
Definition stylesheet.h:45
Definition el_anchor.h:9
void on_click() override
Definition el_anchor.cpp:9
void apply_stylesheet(const litehtml::css &stylesheet) override
Definition el_anchor.cpp:19
Definition html_tag.h:18
Definition background.h:12