#include <ctype.h>
#include "TUri.h"
#include "TObjArray.h"
#include "TObjString.h"
#include "TPRegexp.h"
Go to the source code of this file.
Functions | |
ClassImp (TUri) TUri | |
Bool_t | operator== (const TUri &u1, const TUri &u2) |
Variables | |
const char *const | kURI_pchar = "(?:[[:alpha:][:digit:]-._~!$&'()*+,;=:@]|%[0-9A-Fa-f][0-9A-Fa-f])" |
const char *const | kURI_unreserved = "[[:alpha:][:digit:]-._~]" |
const char *const | kURI_reserved = "[:/?#[]@!$&'()*+,;=]" |
const char *const | kURI_gendelims = "[:/?#[]@]" |
const char *const | kURI_subdelims = "[!$&'()*+,;=]" |
const char* const kURI_gendelims = "[:/?#[]@]" |
const char* const kURI_pchar = "(?:[[:alpha:][:digit:]-._~!$&'()*+,;=:@]|%[0-9A-Fa-f][0-9A-Fa-f])" |
Definition at line 32 of file TUri.cxx.
Referenced by TUri::IsFragment(), TUri::IsPathAbempty(), TUri::IsPathAbsolute(), TUri::IsPathNoscheme(), TUri::IsPathRootless(), TUri::IsQuery(), and TUri::IsUserInfo().
const char* const kURI_reserved = "[:/?#[]@!$&'()*+,;=]" |
const char* const kURI_subdelims = "[!$&'()*+,;=]" |
const char* const kURI_unreserved = "[[:alpha:][:digit:]-._~]" |
Definition at line 35 of file TUri.cxx.
Referenced by TUri::IsUnreserved(), and TUri::PctDecodeUnreserved().