MLBookProc 1.0
 
Loading...
Searching...
No Matches
PaperBookInfoEntry.h
1/*
2 * Copyright (C) 2024-2025 Yury Bobylev <bobilev_yury@mail.ru>
3 *
4 * This program is free software: you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation, version 3.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <https://www.gnu.org/licenses/>.
15 */
16
17#ifndef PAPERBOOKINFOENTRY_H
18#define PAPERBOOKINFOENTRY_H
19
20#include <string>
21
29{
30public:
35
40
45
51
57
61 bool available = false;
62
66 std::string book_name;
67
71 std::string publisher;
72
76 std::string city;
77
81 std::string year;
82
87 std::string isbn;
88};
89
90#endif // PAPERBOOKINFOENTRY_H
bool available
If paper book info is available, will be set to true.
Definition PaperBookInfoEntry.h:61
std::string isbn
ISBN of paper book.
Definition PaperBookInfoEntry.h:87
PaperBookInfoEntry(const PaperBookInfoEntry &other)
PaperBookInfoEntry copy constructor.
PaperBookInfoEntry & operator=(PaperBookInfoEntry &&other)
operator =
PaperBookInfoEntry()
PaperBookInfoEntry constructor.
std::string publisher
Paper book publisher.
Definition PaperBookInfoEntry.h:71
std::string book_name
Paper book name.
Definition PaperBookInfoEntry.h:66
std::string city
City where paper book was published.
Definition PaperBookInfoEntry.h:76
PaperBookInfoEntry(PaperBookInfoEntry &&other)
PaperBookInfoEntry move constructor.
PaperBookInfoEntry & operator=(const PaperBookInfoEntry &other)
operator =
std::string year
Year of paper book publishing.
Definition PaperBookInfoEntry.h:81