File indexing completed on 2024-05-05 16:46:16

0001 /*
0002     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef QMAKECACHE_H
0008 #define QMAKECACHE_H
0009 
0010 #include "qmakefile.h"
0011 
0012 class QMakeMkSpecs;
0013 
0014 class QMakeCache : public QMakeFile
0015 {
0016 public:
0017     explicit QMakeCache( const QString& cachefile );
0018     void setMkSpecs( QMakeMkSpecs* specs );
0019     bool read() override;
0020 private:
0021     QMakeMkSpecs* m_mkspecs;
0022 };
0023 
0024 #endif
0025