forked from mirrors/0ad
b755ddefda
make include guards consistent. This was SVN commit r5040.
18 lines
374 B
C++
18 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
|