mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
17 lines
374 B
C++
17 lines
374 B
C++
#ifndef INCLUDED_FILEHISTORY
|
|
#define INCLUDED_FILEHISTORY
|
|
|
|
#include "wx/docview.h"
|
|
|
|
class FileHistory : public wxFileHistory
|
|
{
|
|
public:
|
|
FileHistory(const wxString& configSubdir); // treated as relative - use "/AppName"
|
|
virtual void Load(wxConfigBase& config);
|
|
virtual void Save(wxConfigBase& config);
|
|
|
|
private:
|
|
wxString m_configSubdir;
|
|
};
|
|
|
|
#endif // INCLUDED_FILEHISTORY
|