LeviLamina
Loading...
Searching...
No Matches
FieldTrialFlag.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // member functions
10 // NOLINTBEGIN
11 MCAPI explicit FieldTrialFlag(::std::string_view);
12
13 MCAPI FieldTrialFlag(::std::string_view, bool);
14
15 MCAPI explicit operator bool() const;
16 // NOLINTEND
17
18public:
19 // constructor thunks
20 // NOLINTBEGIN
21 MCAPI void* $ctor(::std::string_view);
22
23 MCAPI void* $ctor(::std::string_view, bool);
24 // NOLINTEND
25
26public:
27 // vftables
28 // NOLINTBEGIN
29 MCAPI static void** $vftable();
30 // NOLINTEND
31};
32
33} // namespace webrtc
Definition FieldTrialFlag.h:7