1 #ifndef LH_EL_ANCHOR_H 2 #define LH_EL_ANCHOR_H 3 4 #include "html_tag.h" 5 6 namespace litehtml 7 { 8 class el_anchor : public html_tag 9 { 10 public: 11 el_anchor(const std::shared_ptr<litehtml::document>& doc); 12 virtual ~el_anchor(); 13 14 virtual void on_click() override; 15 virtual void apply_stylesheet(const litehtml::css& stylesheet) override; 16 }; 17 } 18 19 #endif // LH_EL_ANCHOR_H 20