mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-04-20 01:43:12 +02:00
Added the value tag to the html builder.
This commit is contained in:
parent
00f9be5f59
commit
6ea8d3e39a
@ -33,6 +33,11 @@ HTMLTag *HTMLTag::name(const std::string &val) {
|
||||
|
||||
return this;
|
||||
}
|
||||
HTMLTag *HTMLTag::value(const std::string &val) {
|
||||
attrib("value", val);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
HTMLTag *HTMLTag::method(const std::string &val) {
|
||||
attrib("method", 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 *value(const std::string &val);
|
||||
HTMLTag *method(const std::string &val);
|
||||
HTMLTag *type(const std::string &val);
|
||||
HTMLTag *rel(const std::string &val);
|
||||
|
Loading…
Reference in New Issue
Block a user