Let's make (git) history!
这个提交包含在:
19
htmllink.h
普通文件
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
|
在新工单中引用
屏蔽一个用户