diff options
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 a7d71251..ece23ef9 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); /** |
