Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FbDataPath.h « MyRuLib - github.com/lintest/myrulib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05acc4b4c740a7a664671956e8e04bcf08eacadc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __FBDATAPATH_H__
#define __FBDATAPATH_H__

#include <wx/wx.h>
#include <wx/filename.h>
#include <wx/stdpaths.h>

class FbStandardPaths: public wxStandardPaths
{
	public:
		virtual wxString GetDataFile() const;
		virtual wxString GetConfigFile() const;
		virtual wxString GetAppFileName() const;
		virtual wxString GetUserConfigDir() const;
		virtual wxString GetDownloadDir(bool bMustExist = false) const;
	private:
		wxFileName GetDatabaseFilename() const;
};

#endif // __FBDATAPATH_H__