 |
wxMaxima
|
Go to the documentation of this file.
29 #ifndef RECENTDOCUMENTS_H
30 #define RECENTDOCUMENTS_H
35 #include <wx/config.h>
36 #include <wx/tokenzr.h>
37 #include <wx/string.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;
void AddDocument(wxString name)
Add a new recent document.
Definition: RecentDocuments.cpp:62
void Save()
Save the recent documents list.
Definition: RecentDocuments.cpp:45
RecentDocuments(wxString documentType)
Definition: RecentDocuments.cpp:4
std::list< wxString > Get() const
Get the list of recent documents.
Definition: RecentDocuments.h:63
~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:9
A class that maintains a list of recent documents.
Definition: RecentDocuments.h:41