LeviLamina
Loading...
Searching...
No Matches
ExperimentStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // ExperimentStorage inner types define
8 using ExperimentData = ::std::vector<bool>;
9
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 32, ::std::vector<bool>> mExperimentData;
14 ::ll::TypedStorage<8, 32, ::std::vector<bool>> mDeprecatedData;
15 ::ll::TypedStorage<1, 1, bool> mExperimentsEverToggled;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI ::ExperimentStorage& operator=(::ExperimentStorage&&);
26
27 MCAPI ::ExperimentStorage& operator=(::ExperimentStorage const&);
28
29 MCAPI ~ExperimentStorage();
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCFOLD void $dtor();
36 // NOLINTEND
37};
Definition ExperimentStorage.h:5