LeviLamina
Loading...
Searching...
No Matches
DeviceIdManager_Common.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/application/device/DeviceIdManager.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Bedrock { struct DeviceIdContext; }
12namespace Core { class FileSystem; }
13// clang-format on
14
15namespace Bedrock {
16
18public:
19 // member variables
20 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 1
37 virtual void initialize(::Bedrock::NonOwnerPointer<::Core::FileSystem>) /*override*/;
38
39 // vIndex: 2
40 virtual void updateDeviceId(bool const) /*override*/;
41
42 // vIndex: 3
43 virtual ::std::string const& getDeviceId() const /*override*/;
44
45 // vIndex: 4
46 virtual ::std::string const& getDeviceIdWarning() const /*override*/;
47
48 // vIndex: 5
49 virtual ::Bedrock::DeviceIdContext const& getDeviceIdContext() const /*override*/;
50
51 // vIndex: 6
52 virtual void _initializePlatform(bool const) = 0;
53
54 // vIndex: 0
55 virtual ~DeviceIdManager_Common() /*override*/ = default;
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67
68 // NOLINTEND
69};
70
71} // namespace Bedrock
Definition DeviceIdManager_Common.h:17
Definition DeviceIdManager.h:18
Definition NonOwnerPointer.h:9
Definition Alias.h:14