LeviLamina
Loading...
Searching...
No Matches
ContentCollectionOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/brstd/move_only_function.h"
7
8// auto generated forward declare list
9// clang-format off
12struct ContentItem;
13// clang-format on
14
16public:
17 // ContentCollectionOptions inner types define
18 using OnReload = ::brstd::move_only_function<void(::ContentItemCollection&)>;
19
20 using SortPredicate = bool (*)(::ContentItem const&, ::ContentItem const&);
21
22 using FilterPredicate = ::brstd::move_only_function<bool(::ContentItem const&)>;
23
24 using ViewSource = ::std::shared_ptr<::IVersionedContentItemCollection const>;
25
26public:
27 // member variables
28 // NOLINTBEGIN
29 ::ll::TypedStorage<8, 64, ::brstd::move_only_function<bool(::ContentItem const&)>> mFilter;
30 ::ll::TypedStorage<8, 8, bool (*)(::ContentItem const&, ::ContentItem const&)> mSort;
31 ::ll::TypedStorage<8, 64, ::brstd::move_only_function<void(::ContentItemCollection&)>> mOnReload;
32 ::ll::TypedStorage<8, 24, ::std::vector<::std::shared_ptr<::IVersionedContentItemCollection const>>> mViewSource;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI ~ContentCollectionOptions();
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCAPI void $dtor();
45 // NOLINTEND
46};
Definition ContentItemCollection.h:5
Definition IVersionedContentItemCollection.h:5
Definition ContentCollectionOptions.h:5
Definition ContentItem.h:5