LeviLamina
Loading...
Searching...
No Matches
ExperimentStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ExperimentStorage {
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
20 ExperimentStorage& operator=(ExperimentStorage const&);
21 ExperimentStorage();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI ExperimentStorage(::ExperimentStorage const&);
27
28 MCNAPI ::ExperimentStorage& operator=(::ExperimentStorage&&);
29
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCNAPI void* $ctor(::ExperimentStorage const&);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44};
MCAPI void * $ctor(::ExperimentStorage const &)
MCAPI ExperimentStorage(::ExperimentStorage const &)
MCAPI void $dtor()
MCAPI ~ExperimentStorage()
MCAPI::ExperimentStorage & operator=(::ExperimentStorage &&)