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 GPLIB_H 00012 #define GPLIB_H 00013 00014 #include <externallanguage.h> 00015 00019 class Gplib : public ExternalLanguage 00020 { 00021 public: 00022 Gplib( ProcessChain *processChain, KTechlab *parent ); 00023 ~Gplib(); 00024 00025 virtual void processInput( ProcessOptions options ); 00026 virtual MessageInfo extractMessageInfo( const QString &text ); 00027 virtual ProcessOptions::ProcessPath::Path outputPath( ProcessOptions::ProcessPath::Path inputPath ) const; 00028 00029 protected: 00030 virtual bool isError( const QString &message ) const; 00031 virtual bool isWarning( const QString &message ) const; 00032 }; 00033 00034 #endif
1.5.1