summaryrefslogtreecommitdiffstats
path: root/src/ui/maindialog.h
diff options
context:
space:
mode:
authorkrzys-h <krzys_h@interia.pl>2014-09-26 19:48:53 +0200
committerkrzys-h <krzys_h@interia.pl>2014-09-26 19:50:27 +0200
commit3b1cfdbfb4e57aff7c4d651ea2a14aceab36be14 (patch)
tree865d0e66a15d8aa4a7ebe85d209ae2202871a66d /src/ui/maindialog.h
parent740036e430d98afe487313bb5be8c5e72968eb94 (diff)
downloadcolobot-3b1cfdbfb4e57aff7c4d651ea2a14aceab36be14.tar.gz
colobot-3b1cfdbfb4e57aff7c4d651ea2a14aceab36be14.tar.bz2
colobot-3b1cfdbfb4e57aff7c4d651ea2a14aceab36be14.zip
Don't use physfs in saving code for now
This requires too much refactoring and we want to release 0.1.5 soon. We'll need to rewrite saving/loading code to fully implement new level parser anyway.
Diffstat (limited to 'src/ui/maindialog.h')
-rw-r--r--src/ui/maindialog.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ui/maindialog.h b/src/ui/maindialog.h
index 32c0e1d..cb26426 100644
--- a/src/ui/maindialog.h
+++ b/src/ui/maindialog.h
@@ -25,8 +25,13 @@
#include "app/pausemanager.h"
+#include <boost/filesystem.hpp>
+#include <boost/algorithm/string.hpp>
+
#include <vector>
+namespace fs = boost::filesystem;
+
class CEventQueue;
class CSoundInterface;
@@ -260,7 +265,7 @@ protected:
SceneInfo m_sceneInfo[MAXSCENE];
- std::vector<std::string> m_saveList;
+ std::vector<fs::path> m_saveList;
};
} // namespace Ui