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
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI ::ExperimentStorage& operator=(::ExperimentStorage&&);
27
28 MCNAPI ::ExperimentStorage& operator=(::ExperimentStorage const&);
29
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCNAPI void $dtor();
37 // NOLINTEND
38};
Definition ExperimentStorage.h:5
MCAPI::ExperimentStorage & operator=(::ExperimentStorage const &)
MCAPI void $dtor()
MCAPI ~ExperimentStorage()
MCAPI::ExperimentStorage & operator=(::ExperimentStorage &&)