summaryrefslogtreecommitdiff
path: root/src/client/SaveFile.h
blob: 54a9290b1197f62846458d53c9ae7016f45de318 (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
32
33
34
35
36
/*
 * SaveFile.h
 *
 *  Created on: Jun 6, 2012
 *      Author: Simon
 */

#ifndef SAVEFILE_H_
#define SAVEFILE_H_

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


using namespace std;

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

	Thumbnail * GetThumbnail();
	GameSave * GetGameSave();
	void SetThumbnail(Thumbnail * thumb);
	void SetGameSave(GameSave * save);
	string GetName();

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

#endif /* SAVEFILE_H_ */