LeviLamina
Loading...
Searching...
No Matches
SwatchList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace persona::color { struct Swatch; }
11// clang-format on
12
13namespace persona::color {
14
15class SwatchList : public ::Bedrock::EnableNonOwnerReferences {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 SwatchList& operator=(SwatchList const&);
25 SwatchList(SwatchList const&);
26 SwatchList();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~SwatchList() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCNAPI explicit SwatchList(::std::vector<::persona::color::Swatch>&& swatches);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCNAPI void* $ctor(::std::vector<::persona::color::Swatch>&& swatches);
44 // NOLINTEND
45
46public:
47 // vftables
48 // NOLINTBEGIN
49 MCNAPI static void** $vftable();
50 // NOLINTEND
51};
52
53} // namespace persona::color
Definition EnableNonOwnerReferences.h:7
MCAPI void * $ctor(::std::vector<::persona::color::Swatch > &&swatches)
MCAPI SwatchList(::std::vector<::persona::color::Swatch > &&swatches)
static MCAPI void ** $vftable()
Definition Alias.h:14
Definition Swatch.h:7