LeviLamina
Loading...
Searching...
No Matches
ItemListInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/store/StoreCatalogCategory.h"
7
8// auto generated forward declare list
9// clang-format off
10class StoreCatalogItem;
11// clang-format on
12
13struct ItemListInfo {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 32, ::std::string> mTitle;
18 ::ll::TypedStorage<8, 64, ::std::function<bool(::StoreCatalogItem const&)>> mFilterFunction;
19 ::ll::TypedStorage<1, 1, bool> mAllowSeeMoreBy;
20 ::ll::TypedStorage<4, 4, int> mMaxOffersVisible;
21 ::ll::TypedStorage<1, 1, bool> mIsClientSideInventorySearchEnabled;
22 ::ll::TypedStorage<4, 4, ::StoreCatalogCategory> mCatalogCategory;
23 ::ll::TypedStorage<1, 1, bool> mShowSalesCollection;
24 ::ll::TypedStorage<1, 1, bool> mHideNonSaleList;
25 ::ll::TypedStorage<1, 1, bool> mIsSearchScreen;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 ItemListInfo& operator=(ItemListInfo const&);
31 ItemListInfo();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI ItemListInfo(::ItemListInfo const&);
37
38 MCAPI ItemListInfo(
39 ::std::string const& title,
40 ::std::function<bool(::StoreCatalogItem const&)> filterFunction,
41 bool allowSeeMoreBy,
42 int maxOffersVisible,
43 bool isClientSideInventorySearchEnabled,
44 ::StoreCatalogCategory catelogCategory,
45 bool showSalesCollection,
46 bool hideNonSaleList
47 );
48
49 MCAPI ~ItemListInfo();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(::ItemListInfo const&);
56
57 MCAPI void* $ctor(
58 ::std::string const& title,
59 ::std::function<bool(::StoreCatalogItem const&)> filterFunction,
60 bool allowSeeMoreBy,
61 int maxOffersVisible,
62 bool isClientSideInventorySearchEnabled,
63 ::StoreCatalogCategory catelogCategory,
64 bool showSalesCollection,
65 bool hideNonSaleList
66 );
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72 MCFOLD void $dtor();
73 // NOLINTEND
74};
Definition ItemListInfo.h:5