diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2011-08-02 12:20:16 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2011-08-02 13:38:55 +0200 |
commit | edc776c26cf136f187266c17361320964062ba7f (patch) | |
tree | 663295eee5275316906a1f038b576f6f5e4cd725 /src/plugins/remotelinux/genericdirectuploadstep.h | |
parent | 7efb3c35a5e50843657815e755efdb4bffaed231 (diff) | |
download | qt-creator-edc776c26cf136f187266c17361320964062ba7f.tar.gz |
RemoteLinux: Private implementation for all exported classes.
Change-Id: Id92eb156b027a4986788141845170105b3b1d9e5
Reviewed-on: http://codereview.qt.nokia.com/2507
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/genericdirectuploadstep.h')
-rw-r--r-- | src/plugins/remotelinux/genericdirectuploadstep.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadstep.h b/src/plugins/remotelinux/genericdirectuploadstep.h index 22601fbe20..b7a17a2b65 100644 --- a/src/plugins/remotelinux/genericdirectuploadstep.h +++ b/src/plugins/remotelinux/genericdirectuploadstep.h @@ -36,7 +36,9 @@ #include "remotelinux_export.h" namespace RemoteLinux { -class GenericDirectUploadService; +namespace Internal { +class GenericDirectUploadStepPrivate; +} class REMOTELINUX_EXPORT GenericDirectUploadStep : public AbstractRemoteLinuxDeployStep { @@ -45,6 +47,7 @@ class REMOTELINUX_EXPORT GenericDirectUploadStep : public AbstractRemoteLinuxDep public: GenericDirectUploadStep(ProjectExplorer::BuildStepList *bsl, const QString &id); GenericDirectUploadStep(ProjectExplorer::BuildStepList *bsl, GenericDirectUploadStep *other); + ~GenericDirectUploadStep(); bool isDeploymentPossible(QString *whyNot = 0) const; @@ -56,7 +59,7 @@ private: void ctor(); - GenericDirectUploadService *m_deployService; + Internal::GenericDirectUploadStepPrivate *m_d; }; } //namespace RemoteLinux |