summaryrefslogtreecommitdiff
path: root/src/profile.h
diff options
context:
space:
mode:
authorTannin <sherb@gmx.net>2016-02-12 19:08:25 +0100
committerTannin <sherb@gmx.net>2016-02-12 19:08:25 +0100
commit4f8c71d62626aa61fb4d13f80bc043d5e6492c3e (patch)
treec16531f7609668321d780e88a523319d18fc8667 /src/profile.h
parentfd68248698357591f99c3091d5b15a3084fc078d (diff)
merged master into new_vfs_library
Diffstat (limited to 'src/profile.h')
-rw-r--r--src/profile.h19
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);
/**