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/sshkeydeployer.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/sshkeydeployer.h')
-rw-r--r-- | src/plugins/remotelinux/sshkeydeployer.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/remotelinux/sshkeydeployer.h b/src/plugins/remotelinux/sshkeydeployer.h index fad133fff4..97834b2cdf 100644 --- a/src/plugins/remotelinux/sshkeydeployer.h +++ b/src/plugins/remotelinux/sshkeydeployer.h @@ -34,18 +34,20 @@ #include "remotelinux_export.h" #include <QtCore/QObject> -#include <QtCore/QSharedPointer> namespace Utils { class SshConnectionParameters; -class SshRemoteProcessRunner; } namespace RemoteLinux { +namespace Internal { +class SshKeyDeployerPrivate; +} class REMOTELINUX_EXPORT SshKeyDeployer : public QObject { Q_OBJECT + Q_DISABLE_COPY(SshKeyDeployer) public: explicit SshKeyDeployer(QObject *parent = 0); ~SshKeyDeployer(); @@ -65,7 +67,7 @@ private slots: private: void cleanup(); - QSharedPointer<Utils::SshRemoteProcessRunner> m_deployProcess; + Internal::SshKeyDeployerPrivate * const m_d; }; } // namespace RemoteLinux |