00001 /*************************************************************************** 00002 * Copyright (C) 2005 by David Saxton * 00003 * david@bluehaze.org * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 ***************************************************************************/ 00010 00011 #ifndef SDCC_H 00012 #define SDCC_H 00013 00014 #include <externallanguage.h> 00015 00019 class SDCC : public ExternalLanguage 00020 { 00021 public: 00022 SDCC( ProcessChain * processChain, KTechlab * parent ); 00023 ~SDCC(); 00024 00025 virtual void processInput( ProcessOptions options ); 00026 virtual ProcessOptions::ProcessPath::Path outputPath( ProcessOptions::ProcessPath::Path inputPath ) const; 00027 00028 protected: 00029 virtual bool isError( const QString & message ) const; 00030 virtual bool isWarning( const QString & message ) const; 00031 virtual bool isStderrOutputFatal( const QString & message ) const; 00032 }; 00033 00034 #endif
1.5.1