LeviLamina
Loading...
Searching...
No Matches
Int64Option.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/options/option_types/Option.h"
7
8class Int64Option : public ::Option {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 8, int64 const> VALUE_MAX;
13 ::ll::TypedStorage<8, 8, int64 const> VALUE_MIN;
14 ::ll::TypedStorage<8, 8, int64> mValue;
15 ::ll::TypedStorage<8, 8, int64> mDefaultValue;
16 ::ll::TypedStorage<1, 1, bool> mClampToRange;
17 ::ll::TypedStorage<8, 24, ::std::vector<int64>> mPossibleValues;
18 ::ll::TypedStorage<8, 64, ::std::function<int(int)>> mCoerceSaveValueCallback;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ~Int64Option() /*override*/ = default;
25
26 virtual void save(::std::vector<::std::pair<::std::string, ::std::string>>&) /*override*/;
27
28 virtual void load(::std::string const&) /*override*/;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34
35 // NOLINTEND
36};
Definition Int64Option.h:8