LeviLamina
Loading...
Searching...
No Matches
DeviceIdManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.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
18 public ::Bedrock::ImplBase<::Bedrock::DeviceIdManager> {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual void initialize(::Bedrock::NonOwnerPointer<::Core::FileSystem>) = 0;
23
24 virtual void updateDeviceId(bool const) = 0;
25
26 virtual ::std::string const& getDeviceId() const = 0;
27
28 virtual ::std::string const& getDeviceIdWarning() const = 0;
29
30 virtual ::Bedrock::DeviceIdContext const& getDeviceIdContext() const = 0;
31
32 virtual bool isDeviceIdValid() const = 0;
33
34 virtual ~DeviceIdManager() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40
41 // NOLINTEND
42};
43
44} // namespace Bedrock
Definition DeviceIdManager.h:18
Definition EnableNonOwnerReferences.h:7
Definition _HeaderOutputPredefine.h:256
Definition NonOwnerPointer.h:9
Definition FileSystem.h:27
Definition DeviceIdContext.h:7