MLBookProc 1.0
 
Loading...
Searching...
No Matches
ElectroBookInfoEntry.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 ELECTROBOOKINFOENTRY_H
18#define ELECTROBOOKINFOENTRY_H
19
20#include <string>
21
28{
29public:
34
39
44
50
56
60 bool available = false;
61
65 std::string author;
66
70 std::string program_used;
71
75 std::string date;
76
81 std::string src_url;
82
86 std::string src_ocr;
87
91 std::string id;
92
96 std::string version;
97
101 std::string history;
102
106 std::string publisher;
107};
108
109#endif // ELECTROBOOKINFOENTRY_H
ElectroBookInfoEntry()
ElectroBookInfoEntry constructor.
std::string src_ocr
Author of the original (online) document, if this is a conversion.
Definition ElectroBookInfoEntry.h:86
std::string publisher
File publisher.
Definition ElectroBookInfoEntry.h:106
std::string program_used
Program used to create file.
Definition ElectroBookInfoEntry.h:70
std::string author
Author of file.
Definition ElectroBookInfoEntry.h:65
std::string version
File version.
Definition ElectroBookInfoEntry.h:96
ElectroBookInfoEntry & operator=(const ElectroBookInfoEntry &other)
operator =
std::string src_url
Source URL if this document is a conversion of some other (online) document.
Definition ElectroBookInfoEntry.h:81
bool available
Indicates if any information is available.
Definition ElectroBookInfoEntry.h:60
ElectroBookInfoEntry(const ElectroBookInfoEntry &other)
ElectroBookInfoEntry copy constructor.
std::string id
Unique file identifier.
Definition ElectroBookInfoEntry.h:91
ElectroBookInfoEntry & operator=(ElectroBookInfoEntry &&other)
operator =
ElectroBookInfoEntry(ElectroBookInfoEntry &&other)
ElectroBookInfoEntry move constructor.
std::string date
Date of file creation.
Definition ElectroBookInfoEntry.h:75
std::string history
History of file changes.
Definition ElectroBookInfoEntry.h:101