LeviLamina
Loading...
Searching...
No Matches
Base64.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7struct Base64 {
8public:
9 // static functions
10 // NOLINTBEGIN
11 MCAPI static void EncodeFromArray(void const*, uint64, ::std::string*);
12 // NOLINTEND
13
14public:
15 // static variables
16 // NOLINTBEGIN
17 MCAPI static ::std::add_lvalue_reference_t<char const[]> Base64Table();
18
19 MCAPI static ::std::add_lvalue_reference_t<uchar const[]> DecodeTable();
20 // NOLINTEND
21};
22
23} // namespace rtc
Definition Base64.h:7