/*************************************************************************** * Copyright (C) 2006 by Andreas Pakulat * * apaku@gmx.de * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef TQMAKEDEFAULTOPTS_H #define TQMAKEDEFAULTOPTS_H #include #include // #include // class KTempFile; // class BlockingKProcess; class TQMakeDefaultOpts { public: TQMakeDefaultOpts( ); ~TQMakeDefaultOpts(); void readVariables( const TQString& qtdir, const TQString& projdir ); const TQStringList variableValues( const TQString& ) const; const TQStringList& variables() const; // signals: // void variablesRead(); // private slots: // void slotReadStderr( KProcess*, char*, int ); // void slotFinished( KProcess* ); private: TQMap m_variables; TQStringList m_keys; }; #endif // kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on