LeviLamina
Loading...
Searching...
No Matches
IOptionLevelDataPropertyHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/settings/IOptionPropertyHandler.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Settings::RegistryBuilder { class IBuilderContext; }
11// clang-format on
12
13namespace Settings {
14
15class IOptionLevelDataPropertyHandler : public ::Settings::IOptionPropertyHandler {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Settings::RegistryBuilder::IBuilderContext&> mContext;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 IOptionLevelDataPropertyHandler& operator=(IOptionLevelDataPropertyHandler const&);
25 IOptionLevelDataPropertyHandler(IOptionLevelDataPropertyHandler const&);
26 IOptionLevelDataPropertyHandler();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~IOptionLevelDataPropertyHandler() /*override*/ = default;
32 // NOLINTEND
33};
34
35} // namespace Settings
Definition IOptionLevelDataPropertyHandler.h:7
Definition IBuilderContext.h:7