forked from organicmaps/organicmaps
16 lines
339 B
C++
16 lines
339 B
C++
#ifndef __URLENCODE_H__
|
|
#define __URLENCODE_H__
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
std::string char2hex( char dec );
|
|
enum URLEncodeType {
|
|
URLEncode_Everything,
|
|
URLEncode_Path,
|
|
URLEncode_QueryKey,
|
|
URLEncode_QueryValue,
|
|
};
|
|
std::string urlencode( const std::string &c, URLEncodeType enctype );
|
|
|
|
#endif // __URLENCODE_H__
|