~damien-moore/+junk/codeblocks

« back to all changes in this revision

Viewing changes to src/plugins/compilergcc/compilerMSVC8.h

  • Committer: Damien Moore
  • Date: 2013-10-11 14:25:27 UTC
  • Revision ID: damienlmoore@gmail.com-20131011142527-w13ki0x8yjd7973d
copy of Code::Blocks repo based on SVN rev 9395

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
#ifndef COMPILERMSVC8_H
 
7
#define COMPILERMSVC8_H
 
8
 
 
9
#include <compiler.h>
 
10
 
 
11
class CompilerMSVC8 : public Compiler
 
12
{
 
13
    public:
 
14
        CompilerMSVC8();
 
15
        virtual ~CompilerMSVC8();
 
16
        virtual AutoDetectResult AutoDetectInstallationDir();
 
17
    protected:
 
18
        Compiler * CreateCopy();
 
19
    private:
 
20
};
 
21
 
 
22
#endif // COMPILERMSVC8_H