~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

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