| 14 | namespace ge0 |
| 15 | { |
| 16 | Ge0Parser::Ge0Parser() |
| 17 | { |
| 18 | for (size_t i = 0; i < 256; ++i) |
| 19 | m_base64ReverseCharTable[i] = 255; |
| 20 | for (uint8_t i = 0; i < 64; ++i) |
| 21 | { |
| 22 | char c = Base64Char(i); |
| 23 | m_base64ReverseCharTable[static_cast<uint8_t>(c)] = i; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | bool Ge0Parser::Parse(std::string const & url, Result & result) |
| 28 | { |
nothing calls this directly
no test coverage detected