LeviLamina
Loading...
Searching...
No Matches
OnlinePlayRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Audio {
6
7struct OnlinePlayRequest {
8public:
9 // OnlinePlayRequest inner types declare
10 // clang-format off
11 struct AfterDelay;
12 struct OnSignal;
13 struct WhenReady;
14 // clang-format on
15
16 // OnlinePlayRequest inner types define
17 struct AfterDelay {
18 public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24 public:
25 // prevent constructor by default
26 AfterDelay& operator=(AfterDelay const&);
27 AfterDelay(AfterDelay const&);
28 AfterDelay();
29 };
30
31 struct OnSignal {};
32
33 struct WhenReady {};
34
35public:
36 // member variables
37 // NOLINTBEGIN
42 // NOLINTEND
43
44public:
45 // prevent constructor by default
46 OnlinePlayRequest& operator=(OnlinePlayRequest const&);
47 OnlinePlayRequest(OnlinePlayRequest const&);
48 OnlinePlayRequest();
49
50public:
51 // member functions
52 // NOLINTBEGIN
53#ifdef LL_PLAT_C
54 MCNAPI ~OnlinePlayRequest();
55#endif
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61#ifdef LL_PLAT_C
62 MCNAPI void $dtor();
63#endif
64 // NOLINTEND
65};
66
67} // namespace Audio
Definition OnlinePlayRequest.h:17
Definition OnlinePlayRequest.h:31
Definition OnlinePlayRequest.h:33
Definition Alias.h:14