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

« back to all changes in this revision

Viewing changes to src/plugins/compilergcc/compilerBCC.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 COMPILERBCC_H
 
10
#define COMPILERBCC_H
 
11
 
 
12
#include <compiler.h>
 
13
 
 
14
class CompilerBCC : public Compiler
 
15
{
 
16
        public:
 
17
                CompilerBCC();
 
18
                virtual ~CompilerBCC();
 
19
        virtual void Reset();
 
20
                virtual void LoadDefaultRegExArray();
 
21
        virtual AutoDetectResult AutoDetectInstallationDir();
 
22
        protected:
 
23
        Compiler * CreateCopy();
 
24
        private:
 
25
};
 
26
 
 
27
#endif // COMPILERBCC_H
 
28
 
 
29
#endif // __WXMSW__