summaryrefslogtreecommitdiff
path: root/src/client/SaveFile.h
blob: 8b4005a557a78051e6ed223e58fbb1c54e9c3b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * SaveFile.h
 *
 *  Created on: Jun 6, 2012
 *      Author: Simon
 */

#ifndef SAVEFILE_H_
#define SAVEFILE_H_

#include <string>
#include "GameSave.h"

using namespace std;

class SaveFile {
public:
	SaveFile(SaveFile & save);
	SaveFile(string filename);

	GameSave * GetGameSave();
	void SetGameSave(GameSave * save);
	string GetName();

	virtual ~SaveFile();
private:
	GameSave * gameSave;
	string filename;
};

#endif /* SAVEFILE_H_ */