~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

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

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is licensed under the GNU General Public License, version 3
 
3
 * http://www.gnu.org/licenses/gpl-3.0.html
 
4
 */
 
5
 
 
6
#ifndef COMPILER_GFORTRAN_H
 
7
#define COMPILER_GFORTRAN_H
 
8
 
 
9
#include <compiler.h>
 
10
 
 
11
class CompilerGNUFortran : public Compiler
 
12
{
 
13
    public:
 
14
        CompilerGNUFortran();
 
15
        virtual ~CompilerGNUFortran();
 
16
        virtual AutoDetectResult AutoDetectInstallationDir();
 
17
    protected:
 
18
        virtual Compiler* CreateCopy();
 
19
    private:
 
20
};
 
21
 
 
22
#endif // COMPILER_GFORTRAN_H
 
23