MLBookProc 1.0.1
 
Loading...
Searching...
No Matches
ArchiveRemoveEntry.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 ARCHIVEREMOVEENTRY_H
18#define ARCHIVEREMOVEENTRY_H
19
20#include <ArchiveFileEntry.h>
21#include <archive.h>
22#include <memory>
23
31{
32public:
37
42
47
52
58
64
68 std::shared_ptr<archive> a_read;
69
73 std::shared_ptr<archive> a_write;
74
78 std::shared_ptr<ArchiveFileEntry> fl;
79};
80
81#endif // ARCHIVEREMOVEENTRY_H
std::shared_ptr< archive > a_write
libarchive object for new archive.
Definition ArchiveRemoveEntry.h:73
ArchiveRemoveEntry(ArchiveRemoveEntry &&other)
ArchiveRemoveEntry move constructor.
virtual ~ArchiveRemoveEntry()
ArchiveRemoveEntry destructor.
ArchiveRemoveEntry(const ArchiveRemoveEntry &other)
ArchiveRemoveEntry copy constructor.
std::shared_ptr< ArchiveFileEntry > fl
ArchiveFileEntry object, file to be removed from.
Definition ArchiveRemoveEntry.h:78
ArchiveRemoveEntry & operator=(const ArchiveRemoveEntry &other)
operator =
ArchiveRemoveEntry & operator=(ArchiveRemoveEntry &&other)
operator =
ArchiveRemoveEntry()
ArchiveRemoveEntry constructor.
std::shared_ptr< archive > a_read
libarchive object, file to be removed from.
Definition ArchiveRemoveEntry.h:68