LeviLamina
Loading...
Searching...
No Matches
RewindSimulationInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RewindSimulation {
6
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 History {
17 public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24 public:
25 // prevent constructor by default
26 History& operator=(History const&);
27 History(History const&);
28 History();
29 };
30
31 struct ConstHistory {
32 public:
33 // member variables
34 // NOLINTBEGIN
37 // NOLINTEND
38
39 public:
40 // prevent constructor by default
41 ConstHistory& operator=(ConstHistory const&);
44 };
45
46public:
47 // member variables
48 // NOLINTBEGIN
56 // NOLINTEND
57
58public:
59 // prevent constructor by default
63};
64
65} // namespace RewindSimulation
Definition RewindSimulationInfo.h:31
Definition RewindSimulationInfo.h:16
Definition RewindSimulationInfo.h:7
Definition Alias.h:14