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> fileSystem) /*override*/;
38
39 // vIndex: 2
40 virtual void updateDeviceId(bool const isAnonymous) /*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 bool isDeviceIdValid() const /*override*/;
53
54 // vIndex: 7
55 virtual void _initializePlatform(bool const) = 0;
56
57 // vIndex: 0
58 virtual ~DeviceIdManager_Common() /*override*/;
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
71
72 MCNAPI void $updateDeviceId(bool const isAnonymous);
73
74 MCNAPI ::std::string const& $getDeviceId() const;
75
76 MCNAPI ::std::string const& $getDeviceIdWarning() const;
77
78 MCNAPI ::Bedrock::DeviceIdContext const& $getDeviceIdContext() const;
79
80 MCNAPI bool $isDeviceIdValid() const;
81 // NOLINTEND
82};
83
84} // namespace Bedrock
Definition DeviceIdManager_Common.h:17
MCAPI bool $isDeviceIdValid() const
MCAPI::std::string const & $getDeviceIdWarning() const
MCAPI void $updateDeviceId(bool const isAnonymous)
MCAPI::std::string const & $getDeviceId() const
MCAPI void $initialize(::Bedrock::NonOwnerPointer<::Core::FileSystem > fileSystem)
MCAPI::Bedrock::DeviceIdContext const & $getDeviceIdContext() const
Definition DeviceIdManager.h:18
Definition NonOwnerPointer.h:9
Definition Alias.h:14