~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/plugins/compilergcc/compilerMINGW.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 COMPILER_MINGW_H
 
7
#define COMPILER_MINGW_H
 
8
 
 
9
#include <wx/intl.h>
 
10
#include <compiler.h>
 
11
 
 
12
class CompilerMINGW : public Compiler
 
13
{
 
14
    public:
 
15
        // added arguments to ctor so we can derive other gcc-flavours directly
 
16
        // from MinGW (e.g. the cygwin compiler is derived from this one).
 
17
        CompilerMINGW(const wxString& name = _("GNU GCC Compiler"), const wxString& ID = _T("gcc"));
 
18
        virtual ~CompilerMINGW();
 
19
        virtual void Reset();
 
20
        virtual void LoadDefaultRegExArray();
 
21
        virtual AutoDetectResult AutoDetectInstallationDir();
 
22
        virtual CompilerCommandGenerator* GetCommandGenerator();
 
23
    protected:
 
24
        virtual Compiler* CreateCopy();
 
25
        virtual void SetVersionString();
 
26
    private:
 
27
};
 
28
 
 
29
#endif // COMPILER_MINGW_H