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