Code::Blocks  SVN r11506
compilerLCC.h
Go to the documentation of this file.
1 #ifndef COMPILER_LCC_H
2 #define COMPILER_LCC_H
3 
4 #include <compiler.h>
5 
6 class CompilerLCC : public Compiler
7 {
8  public:
9  CompilerLCC();
10  virtual ~CompilerLCC();
11 #ifdef __WXMSW__
12  virtual bool IsValid();
13 #endif // __WXMSW__
14  virtual void Reset();
16  protected:
17  virtual Compiler* CreateCopy();
18  private:
20 };
21 
22 #endif // COMPILER_LCC_H
virtual void Reset()
Reset settings to defaults.
Definition: compilerLCC.cpp:42
bool m_RegistryUpdated
Definition: compilerLCC.h:19
AutoDetectResult
Definition: compiler.h:190
virtual bool IsValid()
Check if the compiler is actually valid (installed).
virtual AutoDetectResult AutoDetectInstallationDir()
Try to auto-detect the compiler&#39;s installation directory.
Definition: compilerLCC.cpp:58
Abstract base class for compilers.
Definition: compiler.h:274
virtual ~CompilerLCC()
Definition: compilerLCC.cpp:32
virtual Compiler * CreateCopy()
Implement this in new compilers, to return a new copy.
Definition: compilerLCC.cpp:37