LeviLamina
Loading...
Searching...
No Matches
IOptionsDataProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/settings/IDataProvider.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Settings { struct OptionData; }
11// clang-format on
12
13namespace Settings {
14
15class IOptionsDataProvider : public ::Settings::IDataProvider {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~IOptionsDataProvider() /*override*/;
20
21 virtual ::gsl::span<::Settings::OptionData const> getOptions() const = 0;
22
23 virtual int getValue() const = 0;
24
25 virtual void setValue(int value) = 0;
26
27 virtual ::std::optional<::std::string> const& getInfo() const = 0;
28
29 virtual bool flush();
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCFOLD void $dtor();
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCFOLD bool $flush();
42 // NOLINTEND
43};
44
45} // namespace Settings
Definition IOptionsDataProvider.h:7
Definition OptionData.h:7