LeviLamina
Loading...
Searching...
No Matches
AudioOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
8public:
9 // member variables
10 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 AudioOptions& operator=(AudioOptions const&);
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI AudioOptions();
33
34 MCAPI ::std::string ToString() const;
35
36 MCAPI ~AudioOptions();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor();
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
51
52} // namespace cricket
Definition AudioOptions.h:7
Definition Alias.h:14