Do bulk replace of stl types.
This commit is contained in:
parent
521486be62
commit
c25a56ee19
531 changed files with 2274 additions and 2181 deletions
|
@ -9,20 +9,20 @@ HttpHeader::HttpHeader()
|
|||
|
||||
}
|
||||
|
||||
std::string HttpHeader::getContentType() const
|
||||
String HttpHeader::getContentType() const
|
||||
{
|
||||
return mContentType;
|
||||
}
|
||||
|
||||
std::string HttpHeader::getHttpVersion() const
|
||||
String HttpHeader::getHttpVersion() const
|
||||
{
|
||||
return mHttpVersion;
|
||||
}
|
||||
|
||||
void HttpHeader::parse(const std::vector<std::string >& message)
|
||||
void HttpHeader::parse(const Vector<String >& message)
|
||||
{
|
||||
std::string tag;
|
||||
std::string value;
|
||||
String tag;
|
||||
String value;
|
||||
bool foundDelimiter{false};
|
||||
for (const auto& line : message)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue