You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
/***************************************************************************
|
|
* 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 <tqmap.h>
|
|
#include <tqstringlist.h>
|
|
// #include <tqobject.h>
|
|
|
|
// class KTempFile;
|
|
// class BlockingTDEProcess;
|
|
|
|
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( TDEProcess*, char*, int );
|
|
// void slotFinished( TDEProcess* );
|
|
|
|
private:
|
|
TQMap<TQString, TQStringList> m_variables;
|
|
TQStringList m_keys;
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on
|