Beispiel #1
0
bool wxURI::IsReserved(char c)
{
    return IsGenDelim(c) || IsSubDelim(c);
}
Beispiel #2
0
bool wxURI::IsReserved (const wxChar& c)
{
    return IsGenDelim(c) || IsSubDelim(c);
}