mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-04-20 01:43:12 +02:00
Added content quick tag.
This commit is contained in:
parent
e61bc79af5
commit
b3c1b6ccac
@ -23,16 +23,25 @@ HTMLTag *HTMLTag::cls(const std::string &val) {
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
HTMLTag *HTMLTag::id(const std::string &val) {
|
||||
attrib("id", val);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
HTMLTag *HTMLTag::name(const std::string &val) {
|
||||
attrib("name", val);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
HTMLTag *HTMLTag::content(const std::string &val) {
|
||||
attrib("content", val);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
HTMLTag *HTMLTag::value(const std::string &val) {
|
||||
attrib("value", val);
|
||||
|
||||
|
@ -20,6 +20,7 @@ public:
|
||||
HTMLTag *cls(const std::string &val);
|
||||
HTMLTag *id(const std::string &val);
|
||||
HTMLTag *name(const std::string &val);
|
||||
HTMLTag *content(const std::string &val);
|
||||
HTMLTag *value(const std::string &val);
|
||||
HTMLTag *method(const std::string &val);
|
||||
HTMLTag *type(const std::string &val);
|
||||
|
Loading…
Reference in New Issue
Block a user