summaryrefslogtreecommitdiff
path: root/src/plugins/madde/rpmmanager.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-07-31 12:21:33 +0200
committerhjk <qthjk@ovi.com>2012-08-01 13:50:56 +0200
commit7d44ffed51770ae57b4fdb5f0db8f7df5c6f573a (patch)
tree7eba9d042254fd122ca94d265d78c4fa94120ae3 /src/plugins/madde/rpmmanager.h
parent1d85d8e706cd2f0af3731d71781caaa8d528dc68 (diff)
downloadqt-creator-7d44ffed51770ae57b4fdb5f0db8f7df5c6f573a.tar.gz
Madde: Remove support for generic MeeGo.
Platform is dead, no known users, not tested in ages (and no resources to do so). Change-Id: I6f4f913d9379010a3d4abc2728d9ab4425a32bc3 Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/madde/rpmmanager.h')
-rw-r--r--src/plugins/madde/rpmmanager.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/plugins/madde/rpmmanager.h b/src/plugins/madde/rpmmanager.h
deleted file mode 100644
index 957b4c69b7..0000000000
--- a/src/plugins/madde/rpmmanager.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/**************************************************************************
-**
-** This file is part of Qt Creator
-**
-** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
-**
-** Contact: http://www.qt-project.org/
-**
-**
-** GNU Lesser General Public License Usage
-**
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this file.
-** Please review the following information to ensure the GNU Lesser General
-** Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** Other Usage
-**
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**************************************************************************/
-
-#ifndef RPMMANAGER_H
-#define RPMMANAGER_H
-
-#include <coreplugin/id.h>
-#include <utils/fileutils.h>
-
-#include <QObject>
-#include <QHash>
-
-namespace Utils { class FileSystemWatcher; }
-namespace ProjectExplorer { class Target; }
-namespace Qt4ProjectManager { class Qt4BuildConfiguration; }
-
-namespace Madde {
-namespace Internal {
-class MaddePlugin;
-
-class RpmManager : public QObject
-{
- Q_OBJECT
-public:
- ~RpmManager();
-
- static RpmManager *instance();
-
- // ref counted:
- void monitor(const Utils::FileName &specFile);
- void ignore(const Utils::FileName &specFile);
-
- static QString projectVersion(const Utils::FileName &spec, QString *error = 0);
- static bool setProjectVersion(const Utils::FileName &spec, const QString &version, QString *error = 0);
- static QString packageName(const Utils::FileName &spec);
- static bool setPackageName(const Utils::FileName &spec, const QString &packageName);
- static QString shortDescription(const Utils::FileName &spec);
- static bool setShortDescription(const Utils::FileName &spec, const QString &description);
-
- static Utils::FileName packageFileName(const Utils::FileName &spec, ProjectExplorer::Target *t);
-
- static Utils::FileName specFile(ProjectExplorer::Target *target);
-
-signals:
- void specFileChanged(const Utils::FileName &spec);
-
-private slots:
- void specFileWasChanged(const QString &path);
-
-private:
- explicit RpmManager(QObject *parent = 0);
-
- Utils::FileSystemWatcher *m_watcher;
- QHash<Utils::FileName, int> m_watches;
- static RpmManager *m_instance;
-
- friend class MaddePlugin;
-};
-
-} // namespace Internal
-} // namespace Madde
-
-#endif // DEBIANMANAGER_H