LeviLamina
Loading...
Searching...
No Matches
EmptyCryptStringImpl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/CryptStringImpl.h"
7
8namespace rtc {
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~EmptyCryptStringImpl() /*override*/ = default;
15
16 virtual uint64 GetLength() const /*override*/;
17
18 virtual void CopyTo(char*, bool) const /*override*/;
19
20 virtual ::std::string UrlEncode() const /*override*/;
21
22 virtual ::rtc::CryptStringImpl* Copy() const /*override*/;
23
24 virtual void CopyRawTo(::std::vector<uchar>*) const /*override*/;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
33
34} // namespace rtc
Definition CryptStringImpl.h:7
Definition EmptyCryptStringImpl.h:10