LeviLamina
Loading...
Searching...
No Matches
BaseLibraryInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace LibraryInfo {
6
7struct BaseLibraryInfo {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 32, ::std::string> mSectionHeader;
12 // NOLINTEND
13
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~BaseLibraryInfo() = default;
18
19 virtual ::std::string_view getType() const = 0;
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27
28public:
29 // vftables
30 // NOLINTBEGIN
31 MCNAPI static void** $vftable();
32 // NOLINTEND
33};
34
35} // namespace LibraryInfo
Definition BaseLibraryInfo.h:7
static MCAPI void ** $vftable()