Code::Blocks  SVN r11506
ibaseworkspaceloader.h
Go to the documentation of this file.
1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
3  * http://www.gnu.org/licenses/lgpl-3.0.html
4  */
5 
6 #ifndef IBASEWORKSPACELOADER_H
7 #define IBASEWORKSPACELOADER_H
8 
9 class wxString;
10 
12 {
13  public:
16 
17  virtual bool Open(const wxString& filename, wxString& Title) = 0;
18  virtual bool Save(const wxString& title, const wxString& filename) = 0;
19 };
20 
21 #endif // IBASEWORKSPACELOADER_H
virtual bool Open(const wxString &filename, wxString &Title)=0
virtual bool Save(const wxString &title, const wxString &filename)=0