~ubuntu-branches/ubuntu/oneiric/codeblocks/oneiric

« back to all changes in this revision

Viewing changes to src/plugins/projectsimporter/msvcworkspaceloader.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
 
3
 * http://www.gnu.org/licenses/gpl-3.0.html
 
4
 */
 
5
 
 
6
#ifndef MSVCWORKSPACELOADER_H
 
7
#define MSVCWORKSPACELOADER_H
 
8
 
 
9
#include "ibaseworkspaceloader.h"
 
10
#include "msvcworkspacebase.h"
 
11
 
 
12
class MSVCWorkspaceLoader : public IBaseWorkspaceLoader, public MSVCWorkspaceBase
 
13
{
 
14
    public:
 
15
                MSVCWorkspaceLoader();
 
16
                virtual ~MSVCWorkspaceLoader();
 
17
 
 
18
        bool Open(const wxString& filename, wxString& Title);
 
19
        bool Save(const wxString& title, const wxString& filename);
 
20
};
 
21
 
 
22
#endif // MSVCWORKSPACELOADER_H