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
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock { struct DeviceIDPlatformEnvironment; }
11namespace Bedrock { struct DeviceIdContext; }
12namespace Bedrock { struct DeviceIdEnvironment; }
13// clang-format on
14
15namespace Bedrock {
16
17class DeviceIdManager_Common : public ::Bedrock::DeviceIdManager {
18public:
19 // member variables
20 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 DeviceIdManager_Common& operator=(DeviceIdManager_Common const&);
30 DeviceIdManager_Common(DeviceIdManager_Common const&);
31 DeviceIdManager_Common();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual void initialize() /*override*/;
37
38 virtual void updateDeviceId(bool const) /*override*/;
39
40 virtual ::std::string const& getDeviceId() const /*override*/;
41
42 virtual ::std::string const& getDeviceIdWarning() const /*override*/;
43
44 virtual ::Bedrock::DeviceIdContext const& getDeviceIdContext() const /*override*/;
45
46 virtual bool isDeviceIdValid() const /*override*/;
47
48 virtual void _initializePlatform(::Bedrock::DeviceIDPlatformEnvironment const& environment) = 0;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCNAPI void* $ctor(::Bedrock::DeviceIdEnvironment&& environment);
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCNAPI void $initialize();
67
68 MCNAPI void $updateDeviceId(bool const);
69
70 MCNAPI ::std::string const& $getDeviceId() const;
71
72 MCNAPI ::std::string const& $getDeviceIdWarning() const;
73
74 MCNAPI ::Bedrock::DeviceIdContext const& $getDeviceIdContext() const;
75
76 MCNAPI bool $isDeviceIdValid() const;
77
78
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
85
86 MCNAPI static void** $vftableForImplBase();
87 // NOLINTEND
88};
89
90} // namespace Bedrock
static MCAPI void ** $vftableForImplBase()
MCAPI bool $isDeviceIdValid() const
MCAPI void * $ctor(::Bedrock::DeviceIdEnvironment &&environment)
MCAPI::std::string const & $getDeviceIdWarning() const
MCAPI void $updateDeviceId(bool const)
MCAPI DeviceIdManager_Common(::Bedrock::DeviceIdEnvironment &&environment)
MCAPI::std::string const & $getDeviceId() const
static MCAPI void ** $vftableForEnableNonOwnerReferences()
MCAPI::Bedrock::DeviceIdContext const & $getDeviceIdContext() const
Definition DeviceIdManager.h:19
Definition DeviceIDPlatformEnvironment.h:7
Definition DeviceIdContext.h:7
Definition DeviceIdEnvironment.h:7
Definition Alias.h:14