diff options
author | hjk <qthjk@ovi.com> | 2012-07-25 17:36:35 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2012-07-26 10:35:02 +0200 |
commit | 0fcd30cc6191925ea3cba2baad6533a946c9ccd2 (patch) | |
tree | 19794335c39ed8d4a698deb1b40506aea5dbc529 /src/plugins/remotelinux/abstractremotelinuxdeployservice.h | |
parent | 1bbcfd17a9a78107e5f09d1287ae19459f31ab8f (diff) | |
download | qt-creator-0fcd30cc6191925ea3cba2baad6533a946c9ccd2.tar.gz |
madde: prefer using Profile instead of qt4BuildConfiguration etc
Change-Id: I6fe64f7a4a5713c09ea02460a958758d0938fc19
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/abstractremotelinuxdeployservice.h')
-rw-r--r-- | src/plugins/remotelinux/abstractremotelinuxdeployservice.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/remotelinux/abstractremotelinuxdeployservice.h b/src/plugins/remotelinux/abstractremotelinuxdeployservice.h index cba3a87f5e..b54a34b2e6 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeployservice.h +++ b/src/plugins/remotelinux/abstractremotelinuxdeployservice.h @@ -35,13 +35,10 @@ #include <QObject> #include <QSharedPointer> #include <QVariantMap> -QT_FORWARD_DECLARE_CLASS(QString) namespace QSsh { class SshConnection; } - -namespace Qt4ProjectManager { -class Qt4BuildConfiguration; -} +namespace Qt4ProjectManager { class Qt4BuildConfiguration; } +namespace ProjectExplorer { class Profile; } namespace RemoteLinux { class DeployableFile; @@ -79,6 +76,7 @@ signals: protected: const Qt4ProjectManager::Qt4BuildConfiguration *qt4BuildConfiguration() const; + const ProjectExplorer::Profile *profile() const; QSharedPointer<const LinuxDeviceConfiguration> deviceConfiguration() const; QSsh::SshConnection *connection() const; |