LeviLamina
Loading...
Searching...
No Matches
GeometryPtr.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class HashedString;
8// clang-format on
9
10class GeometryPtr {
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 GeometryPtr& operator=(GeometryPtr const&);
20 GeometryPtr(GeometryPtr const&);
21 GeometryPtr();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26#ifdef LL_PLAT_S
27 virtual ~GeometryPtr() = default;
28#else // LL_PLAT_C
29 virtual ~GeometryPtr();
30#endif
31
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCNAPI_C ::HashedString const& getName() const;
38 // NOLINTEND
39
40public:
41 // static variables
42 // NOLINTBEGIN
43 MCNAPI_C static ::GeometryPtr const& NONE();
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCNAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
MCAPI void $dtor()
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition Alias.h:14