mirror of https://github.com/axmolengine/axmol.git
Replace char* with std::string in HttpRequest
This commit is contained in:
parent
b85ccbbb4e
commit
7dd7dfede7
|
@ -142,9 +142,9 @@ public:
|
|||
* Set the url address of HttpRequest object.
|
||||
* The url value could be like these: "http://httpbin.org/ip" or "https://httpbin.org/get"
|
||||
*
|
||||
* @param url the string pointer.
|
||||
* @param url the string object.
|
||||
*/
|
||||
inline void setUrl(const char* url)
|
||||
inline void setUrl(const std::string& url)
|
||||
{
|
||||
_url = url;
|
||||
};
|
||||
|
@ -194,9 +194,9 @@ public:
|
|||
* Set a string tag to identify your request.
|
||||
* This tag can be found in HttpResponse->getHttpRequest->getTag().
|
||||
*
|
||||
* @param tag the string pointer
|
||||
* @param tag the string object.
|
||||
*/
|
||||
inline void setTag(const char* tag)
|
||||
inline void setTag(const std::string& tag)
|
||||
{
|
||||
_tag = tag;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue