diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-12-27 14:55:20 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-02 15:38:14 +0100 |
| commit | d0512da75805be194d949a6d6bac8184314da0e6 (patch) | |
| tree | 27758203a442e3e90510d8c5d8f89848d6f5ffd8 /src/modinfo.h | |
| parent | be0d6aef00891286f33242073627611413ad79c4 (diff) | |
Use an intermediate structure to store the separator tree.
Diffstat (limited to 'src/modinfo.h')
| -rw-r--r-- | src/modinfo.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modinfo.h b/src/modinfo.h index 42abe51e..d04f6657 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -379,6 +379,11 @@ public: // IModInterface implementations / Re-declaration virtual std::shared_ptr<const MOBase::IFileTree> fileTree() const = 0; /** + * @return true if this object represents a regular mod. + */ + virtual bool isRegular() const { return false; } + + /** * @return true if this object represents the overwrite mod. */ virtual bool isOverwrite() const { return false; } @@ -492,11 +497,6 @@ public: // Mutable operations: public: // Methods after this do not come from IModInterface: /** - * @return true if this mod is a regular mod, false otherwise. - */ - virtual bool isRegular() const { return false; } - - /** * @return true if this mod is empty, false otherwise. */ virtual bool isEmpty() const { return false; } |
