diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2022-05-17 11:47:01 +0200 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2023-07-09 17:20:40 +0200 |
| commit | d13f6bb870cdda71257f665367be8ef9fca86255 (patch) | |
| tree | 52e214718478f1e52856572f5aa1a2ac58537f9f /src/archivefiletree.h | |
| parent | 86bb01ba9eac879d3685c439ac9da0028bc4bc80 (diff) | |
Apply clang-format.
Diffstat (limited to 'src/archivefiletree.h')
| -rw-r--r-- | src/archivefiletree.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/archivefiletree.h b/src/archivefiletree.h index e4a5cbdd..3b95769d 100644 --- a/src/archivefiletree.h +++ b/src/archivefiletree.h @@ -23,13 +23,12 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include "archive.h" #include "ifiletree.h" - /** * */ -class ArchiveFileTree: public virtual MOBase::IFileTree { +class ArchiveFileTree : public virtual MOBase::IFileTree +{ public: - /** * @brief Create a new file tree representing the given archive. * @@ -48,7 +47,7 @@ public: * @param archive The archive to update. Must be the one used to * create the tree. */ - virtual void mapToArchive(Archive &archive) const = 0; + virtual void mapToArchive(Archive& archive) const = 0; /** * @brief Update the given archive to prepare for the extraction @@ -61,12 +60,12 @@ public: * @param entries List of entries to mark for extraction. All the entries must * come from a tree created with the given archive. */ - static void mapToArchive(Archive &archive, std::vector<std::shared_ptr<const FileTreeEntry>> const& entries); + static void + mapToArchive(Archive& archive, + std::vector<std::shared_ptr<const FileTreeEntry>> const& entries); protected: - using IFileTree::IFileTree; - }; #endif |
