30 #ifndef __TERRALIB_CORE_UTILS_URI_H__
31 #define __TERRALIB_CORE_UTILS_URI_H__
34 #include "../Config.h"
TECOREEXPORT std::map< std::string, std::string > Expand(const std::string &query_str)
Split a query string into its components.
TECOREEXPORT std::string URIDecode(const std::string &srcUri)
Decodes an encoded URI. The algorithm implementation is based on http://www.codeguru....
TECOREEXPORT std::string SetURIParameter(const std::string &srcUri, const std::string &key, const std::string &value)
Sets the given key and value to the given URI. If the key already exists, it will be replaced....
TECOREEXPORT std::string URIEncode(const std::string &srcUri)
Encodes an decoded URI. The algorithm implementation is based on http://www.codeguru....