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

« back to all changes in this revision

Viewing changes to src/plugins/compilergcc/compilerOW.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
#ifdef __WXMSW__
 
7
// this compiler is valid only in windows
 
8
 
 
9
#ifndef COMPILEROW_H
 
10
#define COMPILEROW_H
 
11
 
 
12
#include <compiler.h>
 
13
 
 
14
class CompilerOW : public Compiler
 
15
{
 
16
        public:
 
17
                CompilerOW();
 
18
                virtual ~CompilerOW();
 
19
        virtual void Reset();
 
20
                virtual void LoadDefaultRegExArray();
 
21
        virtual AutoDetectResult AutoDetectInstallationDir();
 
22
 
 
23
        virtual void LoadSettings(const wxString& baseKey);
 
24
                virtual void SetMasterPath(const wxString& path);
 
25
                virtual CompilerCommandGenerator* GetCommandGenerator();
 
26
        protected:
 
27
        Compiler * CreateCopy();
 
28
        private:
 
29
};
 
30
 
 
31
#endif // COMPILEROW_H
 
32
 
 
33
#endif // __WXMSW__