LeviLamina
Loading...
Searching...
No Matches
AddPage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace BookEditAction {
6
7struct AddPage {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, int> mPageIndex;
12 ::ll::TypedStorage<8, 32, ::std::string> mPageText;
13 ::ll::TypedStorage<8, 32, ::std::string> mPhotoName;
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 AddPage(AddPage const&);
19 AddPage();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCFOLD ::BookEditAction::AddPage& operator=(::BookEditAction::AddPage&&);
25
26 MCFOLD ::BookEditAction::AddPage& operator=(::BookEditAction::AddPage const&);
27
28 MCFOLD bool operator==(::BookEditAction::AddPage const&) const;
29
30 MCAPI ~AddPage();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCFOLD void $dtor();
37 // NOLINTEND
38};
39
40} // namespace BookEditAction
Definition AddPage.h:7