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
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 // vIndex: 0
32 virtual ~SwatchList() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI explicit SwatchList(::std::vector<::persona::color::Swatch>&& swatches);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(::std::vector<::persona::color::Swatch>&& swatches);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
59
60} // namespace persona::color
Definition EnableNonOwnerReferences.h:7
Definition SwatchList.h:15
Definition Alias.h:14