#ifndef HTMLLINK_H #define HTMLLINK_H #include class HtmlLink { public: HtmlLink(); std::string href; std::string innervalue; std::string cssclass; std::string render() { return "" + innervalue + ""; } }; #endif // HTMLLINK_H