summaryrefslogtreecommitdiff
path: root/src/qdirfiletree.h
diff options
context:
space:
mode:
authorMikaël Capelle <capelle.mikael@gmail.com>2022-05-17 11:47:01 +0200
committerMikaël Capelle <capelle.mikael@gmail.com>2023-07-09 17:20:40 +0200
commitd13f6bb870cdda71257f665367be8ef9fca86255 (patch)
tree52e214718478f1e52856572f5aa1a2ac58537f9f /src/qdirfiletree.h
parent86bb01ba9eac879d3685c439ac9da0028bc4bc80 (diff)
Apply clang-format.
Diffstat (limited to 'src/qdirfiletree.h')
-rw-r--r--src/qdirfiletree.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/qdirfiletree.h b/src/qdirfiletree.h
index e9229bf5..1b3f7294 100644
--- a/src/qdirfiletree.h
+++ b/src/qdirfiletree.h
@@ -24,19 +24,19 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include "ifiletree.h"
-
/**
- * @brief Class that expose a directory on the drive, using QDir, as a `MOBase::IFileTree`.
+ * @brief Class that expose a directory on the drive, using QDir, as a
+ * `MOBase::IFileTree`.
*
- * The tree is lazily populated: each subtree is only populated (from the disk) when needed,
- * as specified by IFileTree.
+ * The tree is lazily populated: each subtree is only populated (from the disk) when
+ * needed, as specified by IFileTree.
*
* This class does not expose mutable operations, so any mutable operations will
* fail.
*/
-class QDirFileTree : public MOBase::IFileTree {
+class QDirFileTree : public MOBase::IFileTree
+{
public:
-
/**
* @brief Create a new file tree representing the given directory.
*
@@ -46,13 +46,15 @@ public:
*
* @return a file tree representing the given directory.
*/
- static std::shared_ptr<const QDirFileTree> makeTree(QDir directory, bool ignoreRootMeta = true);
+ static std::shared_ptr<const QDirFileTree> makeTree(QDir directory,
+ bool ignoreRootMeta = true);
protected:
-
using IFileTree::IFileTree;
- virtual bool doPopulate(std::shared_ptr<const IFileTree> parent, std::vector<std::shared_ptr<FileTreeEntry>>& entries) const = 0;
+ virtual bool
+ doPopulate(std::shared_ptr<const IFileTree> parent,
+ std::vector<std::shared_ptr<FileTreeEntry>>& entries) const = 0;
};
#endif