MCPcopy Create free account
hub / github.com/ImpulseAdventure/JPEGsnoop / CUrlString

Method CUrlString

UrlString.cpp:41–48  ·  view source on GitHub ↗

/

Source from the content-addressed store, hash-verified

39
40/*****************************************************************************/
41CUrlString::CUrlString()
42{
43 m_csUnsafe = _T("%=\"<>\\^[]`+$,@:;/!#?&'");
44 for(int iChar = 1; iChar < 33; iChar++)
45 m_csUnsafe += (char)iChar;
46 for(int iChar = 124; iChar < 256; iChar++)
47 m_csUnsafe += (char)iChar;
48}
49
50/*****************************************************************************/
51CString CUrlString::Encode(CString csDecoded)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected