LeviLamina
Loading...
Searching...
No Matches
Attribute.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7class Attribute {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 Attribute& operator=(Attribute const&);
18 Attribute(Attribute const&);
19 Attribute();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI ::std::string ToString() const;
25
26 MCAPI bool has_value() const;
27
28 MCAPI char const* name() const;
29 // NOLINTEND
30};
31
32} // namespace webrtc
Definition Attribute.h:7
Definition Alias.h:14