summaryrefslogtreecommitdiff
path: root/src/modinfowithconflictinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modinfowithconflictinfo.h')
-rw-r--r--src/modinfowithconflictinfo.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/modinfowithconflictinfo.h b/src/modinfowithconflictinfo.h
index 7109b83d..feded99b 100644
--- a/src/modinfowithconflictinfo.h
+++ b/src/modinfowithconflictinfo.h
@@ -34,7 +34,18 @@ public:
*
* @return true if the content is there, false otherwise.
*/
- virtual bool hasContent(int content) const override;
+ virtual bool hasContent(int content) const override; /**
+ * @brief Retrieve a file tree corresponding to the underlying disk content
+ * of this mod.
+ *
+ * The file tree should not be cached since it is already cached and updated when
+ * required.
+ *
+ * @return a file tree representing the content of this mod.
+ */
+ std::shared_ptr<const MOBase::IFileTree> fileTree() const override;
+
+public:
/**
* @brief clear all caches held for this mod
@@ -78,17 +89,6 @@ protected:
**/
virtual std::set<int> doGetContents() const { return {}; }
- /**
- * @brief Retrieve a file tree corresponding to the underlying disk content
- * of this mod.
- *
- * The file tree should not be cached since it is already cached and updated when
- * required.
- *
- * @return a file tree representing the content of this mod.
- */
- std::shared_ptr<const MOBase::IFileTree> contentFileTree() const;
-
ModInfoWithConflictInfo(
PluginContainer* pluginContainer,
const MOBase::IPluginGame* gamePlugin,