Let's make (git) history!

这个提交包含在:
2018-11-03 17:12:20 +01:00
当前提交 3bfebfe8a8
共有 212 个文件被更改,包括 11970 次插入0 次删除

19
htmllink.h 普通文件
查看文件

@@ -0,0 +1,19 @@
#ifndef HTMLLINK_H
#define HTMLLINK_H
#include <string>
class HtmlLink
{
public:
HtmlLink();
std::string href;
std::string innervalue;
std::string cssclass;
std::string render()
{
return "<a href=\"" + href + "\" class=\"" + cssclass + "\">" + innervalue + "</a>";
}
};
#endif // HTMLLINK_H