You've already forked ArduinoHttpClient
mirror of
https://github.com/arduino-libraries/ArduinoHttpClient.git
synced 2025-07-03 16:42:31 +03:00
Make encode method's static
This commit is contained in:
committed by
Sandeep Mistry
parent
d73940758a
commit
5f567031d5
@ -13,11 +13,11 @@ public:
|
||||
URLEncoderClass();
|
||||
virtual ~URLEncoderClass();
|
||||
|
||||
String encode(const char* str);
|
||||
String encode(const String& str);
|
||||
static String encode(const char* str);
|
||||
static String encode(const String& str);
|
||||
|
||||
private:
|
||||
String encode(const char* str, int length);
|
||||
static String encode(const char* str, int length);
|
||||
};
|
||||
|
||||
extern URLEncoderClass URLEncoder;
|
||||
|
Reference in New Issue
Block a user