Code::Blocks  SVN r11506
compilerGDC.h
Go to the documentation of this file.
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_GDC_H
7 #define COMPILER_GDC_H
8 
9 #include <compiler.h>
10 
11 class CompilerGDC : public Compiler
12 {
13  public:
14  CompilerGDC();
15  virtual ~CompilerGDC();
17  protected:
18  virtual Compiler* CreateCopy();
19  private:
20 };
21 
22 #endif // COMPILER_MINGW_H
virtual Compiler * CreateCopy()
Implement this in new compilers, to return a new copy.
Definition: compilerGDC.cpp:39
virtual ~CompilerGDC()
Definition: compilerGDC.cpp:34
AutoDetectResult
Definition: compiler.h:190
Abstract base class for compilers.
Definition: compiler.h:274
virtual AutoDetectResult AutoDetectInstallationDir()
Try to auto-detect the compiler&#39;s installation directory.
Definition: compilerGDC.cpp:44