29#ifndef RECENTDOCUMENTS_H
30#define RECENTDOCUMENTS_H
36#include <wx/tokenzr.h>
63 std::list<wxString>
Get()
const {
return m_listOfFiles;}
69 wxString
Get(
int num)
const;
74 std::list<wxString> m_listOfFiles;
76 wxString m_documentType;
A class that maintains a list of recent documents.
Definition: RecentDocuments.h:42
virtual ~RecentDocuments()
Make sure that we save the list of recent documents on closing the program.
Definition: RecentDocuments.h:71
void Load()
Load the recent documents list.
Definition: RecentDocuments.cpp:31
void AddDocument(wxString name)
Add a new recent document.
Definition: RecentDocuments.cpp:80
std::list< wxString > Get() const
Get the list of recent documents.
Definition: RecentDocuments.h:63
void Save()
Save the recent documents list.
Definition: RecentDocuments.cpp:63