diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2011-07-14 15:38:16 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2011-07-14 15:47:35 +0200 |
commit | 2bdc5c79c6b1193b6fb2e70a8ba24b7306c0121f (patch) | |
tree | 0d6dbd7da1902eb8c685462e9bd806bd6b4d414a /src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h | |
parent | 82bbac7f906948278b666a78a402099d65bfd1dd (diff) | |
download | qt-creator-2bdc5c79c6b1193b6fb2e70a8ba24b7306c0121f.tar.gz |
RemoteLinux: Separate generic and MADDE-specific deploy configurations.
Change-Id: If06ee9fbf91a50bcb6c7b79a824f3f74f92b98d2
Reviewed-on: http://codereview.qt.nokia.com/1671
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h b/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h new file mode 100644 index 0000000000..abcb2d7d3e --- /dev/null +++ b/src/plugins/remotelinux/remotelinuxdeployconfigurationfactory.h @@ -0,0 +1,62 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (info@qt.nokia.com) +** +** +** 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. +** +** If you have questions regarding the use of this file, please contact +** Nokia at info@qt.nokia.com. +** +**************************************************************************/ +#ifndef REMOTELINUXDEPLOYCONFIGURATIONFACTORY_H +#define REMOTELINUXDEPLOYCONFIGURATIONFACTORY_H + +#include <projectexplorer/deployconfiguration.h> + +namespace RemoteLinux { +namespace Internal { + +class RemoteLinuxDeployConfigurationFactory : public ProjectExplorer::DeployConfigurationFactory +{ + Q_OBJECT + +public: + explicit RemoteLinuxDeployConfigurationFactory(QObject *parent = 0); + + virtual QStringList availableCreationIds(ProjectExplorer::Target *parent) const; + virtual QString displayNameForId(const QString &id) const; + virtual bool canCreate(ProjectExplorer::Target *parent, const QString &id) const; + virtual ProjectExplorer::DeployConfiguration *create(ProjectExplorer::Target *parent, const QString &id); + virtual bool canRestore(ProjectExplorer::Target *parent, + const QVariantMap &map) const; + virtual ProjectExplorer::DeployConfiguration *restore(ProjectExplorer::Target *parent, + const QVariantMap &map); + virtual ProjectExplorer::DeployConfiguration *clone(ProjectExplorer::Target *parent, + ProjectExplorer::DeployConfiguration *product); +}; + +} // namespace Internal +} // namespace RemoteLinux + +#endif // REMOTELINUXDEPLOYCONFIGURATIONFACTORY_H |