LeviLamina
Loading...
Searching...
No Matches
BoolOption.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 BoolOption : public ::Option {
9public:
10 // member variables
11 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 BoolOption& operator=(BoolOption const&);
20 BoolOption(BoolOption const&);
21 BoolOption();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 1
27 virtual void save(::std::vector<::std::pair<::std::string, ::std::string>>& propertyVector) /*override*/;
28
29 // vIndex: 4
30 virtual void load(::std::string const& valueString) /*override*/;
31
32 // vIndex: 0
33 virtual ~BoolOption() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI void set(bool v, bool saveOptionChange);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI void $save(::std::vector<::std::pair<::std::string, ::std::string>>& propertyVector);
52
53 MCAPI void $load(::std::string const& valueString);
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCAPI static void** $vftable();
60 // NOLINTEND
61};
Definition BoolOption.h:8
Definition Option.h:17
Definition Alias.h:14