LeviLamina
Loading...
Searching...
No Matches
RewindSimulationInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RewindSimulation {
6
7struct RewindSimulationInfo {
8public:
9 // RewindSimulationInfo inner types declare
10 // clang-format off
11 struct ConstHistory;
12 struct History;
13 // clang-format on
14
15 // RewindSimulationInfo inner types define
16 struct ConstHistory {
17 public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24 public:
25 // prevent constructor by default
26 ConstHistory& operator=(ConstHistory const&);
27 ConstHistory(ConstHistory const&);
28 ConstHistory();
29 };
30
31 struct History {
32 public:
33 // member variables
34 // NOLINTBEGIN
37 // NOLINTEND
38
39 public:
40 // prevent constructor by default
41 History& operator=(History const&);
42 History(History const&);
43 History();
44 };
45
46public:
47 // member variables
48 // NOLINTBEGIN
56 // NOLINTEND
57
58public:
59 // prevent constructor by default
60 RewindSimulationInfo& operator=(RewindSimulationInfo const&);
61 RewindSimulationInfo(RewindSimulationInfo const&);
62 RewindSimulationInfo();
63
64public:
65 // member functions
66 // NOLINTBEGIN
67
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73 MCNAPI_C void $dtor();
74 // NOLINTEND
75};
76
77} // namespace RewindSimulation
Definition RewindSimulationInfo.h:16
Definition RewindSimulationInfo.h:31
Definition Alias.h:14