MLBookProc 1.0
 
Loading...
Searching...
No Matches
FileParseEntry.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 FILEPARSEENTRY_H
18#define FILEPARSEENTRY_H
19
20#include <BookParseEntry.h>
21#include <string>
22#include <vector>
23
31{
32public:
37
42
47
53
59
65 std::string file_rel_path;
66
72 std::string file_hash;
73
79 std::vector<BookParseEntry> books;
80};
81
82#endif // FILEPARSEENTRY_H
std::string file_hash
File hash sum.
Definition FileParseEntry.h:72
FileParseEntry & operator=(FileParseEntry &&other)
operator =
FileParseEntry(const FileParseEntry &other)
FileParseEntry copy constructor.
FileParseEntry()
FileParseEntry constructor.
std::vector< BookParseEntry > books
Contains books info.
Definition FileParseEntry.h:79
FileParseEntry & operator=(const FileParseEntry &other)
operator =
FileParseEntry(FileParseEntry &&other)
FileParseEntry move constructor.
std::string file_rel_path
Relative path to file in collection.
Definition FileParseEntry.h:65