LeviLamina
Loading...
Searching...
No Matches
NetworkEnableDisableListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class NetworkEnableDisableListener {
6public:
7 // NetworkEnableDisableListener inner types define
8 enum class State : int {
9 Enabled = 0,
10 Disabled = 1,
11 Uninitialized = 2,
12 };
13
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 NetworkEnableDisableListener& operator=(NetworkEnableDisableListener const&);
24 NetworkEnableDisableListener(NetworkEnableDisableListener const&);
25 NetworkEnableDisableListener();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~NetworkEnableDisableListener();
31
32 virtual void _onDisable() = 0;
33
34 virtual void _onEnable() = 0;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI void $dtor();
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
static MCAPI void ** $vftable()
Definition Alias.h:14