Code::Blocks  SVN r11506
compilerICC.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_ICC_H
7 #define COMPILER_ICC_H
8 
9 #include <wx/dir.h>
10 #include <wx/arrstr.h>
11 
12 #include <globals.h>
13 #include <compiler.h>
14 
15 class CompilerICC : public Compiler
16 {
17  public:
18  CompilerICC();
19  virtual ~CompilerICC();
21  protected:
22  virtual Compiler* CreateCopy();
23  private:
24 };
25 
26 #endif // COMPILER_ICC_H
virtual Compiler * CreateCopy()
Implement this in new compilers, to return a new copy.
Definition: compilerICC.cpp:67
AutoDetectResult
Definition: compiler.h:190
Abstract base class for compilers.
Definition: compiler.h:274
virtual ~CompilerICC()
Definition: compilerICC.cpp:62
virtual AutoDetectResult AutoDetectInstallationDir()
Try to auto-detect the compiler&#39;s installation directory.
Definition: compilerICC.cpp:72