diff options
| author | TanninOne <seppleviathan@gmx.de> | 2016-02-10 18:37:28 +0100 |
|---|---|---|
| committer | TanninOne <seppleviathan@gmx.de> | 2016-02-10 18:37:28 +0100 |
| commit | ba8464f01f5cd5340feea7163b9e51492c16fa8a (patch) | |
| tree | f900f46ac4f14f8635533279bd434b06e6f3a94e /src/profile.h | |
| parent | 5adb3b377ecd50a75dd034a49582a1da91b67e1c (diff) | |
| parent | 0e9a86ebfc1a97742d0812a7b6ae8bb7f4662673 (diff) | |
Merge pull request #456 from ThosRTanner/issue/418
Refactor save game code into plugins
Diffstat (limited to 'src/profile.h')
| -rw-r--r-- | src/profile.h | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/profile.h b/src/profile.h index e33ac674..39e8ff5f 100644 --- a/src/profile.h +++ b/src/profile.h @@ -25,12 +25,16 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <iprofile.h> #include <delayedfilewriter.h> -#include <QString> +#include <QByteArray> #include <QDir> -#include <QSettings> +#include <QObject> +#include <QString> -#include <vector> +#include <boost/shared_ptr.hpp> + +#include <string> #include <tuple> +#include <vector> namespace MOBase { class IPluginGame; } @@ -172,6 +176,15 @@ public: **/ QString absolutePath() const; + /** + * @return path to this profile's save games + **/ + QString savePath() const; + + /** + * @brief rename profile + * @param newName new name of profile + */ void rename(const QString &newName); /** |
