64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
|
/*
|
||
|
* Cppcheck - A tool for static C/C++ code analysis
|
||
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
||
|
*
|
||
|
* 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 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
||
|
*/
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QString>
|
||
|
#include <QStringList>
|
||
|
#include <QXmlStreamReader>
|
||
|
|
||
|
/**
|
||
|
* @brief A class that reads and writes (TODO) project files.
|
||
|
* The project files contain project-specific settings for checking. For
|
||
|
* example a list of automatically deallocated classes.
|
||
|
*/
|
||
|
class ProjectFile : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
ProjectFile(QObject *parent = 0);
|
||
|
ProjectFile(const QString &filename, QObject *parent = 0);
|
||
|
|
||
|
/**
|
||
|
* @brief Read the project file.
|
||
|
* @param filename Filename (can be also given to constructor).
|
||
|
*/
|
||
|
bool Read(const QString &filename = QString());
|
||
|
|
||
|
/**
|
||
|
* @brief Get list of automatically deallocated classes.
|
||
|
* @return list of classes.
|
||
|
*/
|
||
|
QStringList GetDeAllocatedClasses() const;
|
||
|
|
||
|
protected:
|
||
|
void ReadAutoAllocClasses(QXmlStreamReader &reader);
|
||
|
|
||
|
private:
|
||
|
|
||
|
/**
|
||
|
* @brief Filename (+path) of the project file.
|
||
|
*/
|
||
|
QString mFilename;
|
||
|
|
||
|
/**
|
||
|
* @brief List of automatically deallocated classes.
|
||
|
*/
|
||
|
QStringList mDeAllocatedClasses;
|
||
|
};
|