LeviLamina
Loading...
Searching...
No Matches
ContainerOwner.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // ContainerOwner inner types declare
8 // clang-format off
9 class OwnedContainer;
10 // clang-format on
11
12 // ContainerOwner inner types define
14 public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20 public:
21 // prevent constructor by default
22 OwnedContainer& operator=(OwnedContainer const&);
25
26 public:
27 // member functions
28 // NOLINTBEGIN
30 // NOLINTEND
31
32 public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCNAPI void $dtor();
36 // NOLINTEND
37 };
38
39public:
40 // member variables
41 // NOLINTBEGIN
42 ::ll::TypedStorage<8, 24, ::std::vector<::ContainerOwner::OwnedContainer>> mOwnedContainers;
43 // NOLINTEND
44};
Definition ContainerOwner.h:13
Definition ContainerOwner.h:5
Definition Alias.h:14