LeviLamina
Loading...
Searching...
No Matches
FakeThermalMonitorInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/thermal/ThermalMonitorInterface.h"
7#include "mc/platform/thermal/ThermalState.h"
8
10public:
11 // virtual functions
12 // NOLINTBEGIN
13 virtual ~FakeThermalMonitorInterface() /*override*/ = default;
14
15 virtual ::ThermalState getThermalState() const /*override*/;
16
17 virtual float getThermalValueCelsius() const /*override*/;
18
19 virtual bool isLowBatteryModeEnabled() const /*override*/;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI void* $ctor();
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCNAPI ::ThermalState $getThermalState() const;
38
39 MCNAPI float $getThermalValueCelsius() const;
40
41 MCNAPI bool $isLowBatteryModeEnabled() const;
42
43
44 // NOLINTEND
45
46public:
47 // vftables
48 // NOLINTBEGIN
49 MCNAPI static void** $vftable();
50 // NOLINTEND
51};
MCAPI::ThermalState $getThermalState() const
MCAPI bool $isLowBatteryModeEnabled() const
static MCAPI void ** $vftable()
MCAPI float $getThermalValueCelsius() const
Definition ThermalMonitorInterface.h:8