Let's make (git) history!

This commit is contained in:
2018-11-03 17:12:20 +01:00
커밋 3bfebfe8a8
212개의 변경된 파일11970개의 추가작업 그리고 0개의 파일을 삭제

19
htmllink.h Normal file
파일 보기

@@ -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