forked from qt-creator/qt-creator
Fix: Consistently use class for sshconnectionparameters
Change-Id: I4b281418589e3e86a59175cd0388c7f6c73619d3 Reviewed-on: http://codereview.qt.nokia.com/346 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
@@ -50,8 +50,9 @@ namespace Internal {
|
|||||||
class SshConnectionPrivate;
|
class SshConnectionPrivate;
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
|
|
||||||
struct QTCREATOR_UTILS_EXPORT SshConnectionParameters
|
class QTCREATOR_UTILS_EXPORT SshConnectionParameters
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
enum ProxyType { DefaultProxy, NoProxy };
|
enum ProxyType { DefaultProxy, NoProxy };
|
||||||
enum AuthenticationType { AuthenticationByPassword, AuthenticationByKey };
|
enum AuthenticationType { AuthenticationByPassword, AuthenticationByKey };
|
||||||
SshConnectionParameters(ProxyType proxyType);
|
SshConnectionParameters(ProxyType proxyType);
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
namespace Utils {
|
namespace Utils {
|
||||||
class SshConnection;
|
class SshConnection;
|
||||||
struct SshConnectionParameters;
|
class SshConnectionParameters;
|
||||||
namespace Internal { class SshConnectionManagerPrivate; }
|
namespace Internal { class SshConnectionManagerPrivate; }
|
||||||
|
|
||||||
class QTCREATOR_UTILS_EXPORT SshConnectionManager
|
class QTCREATOR_UTILS_EXPORT SshConnectionManager
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
#include <QtCore/QSharedPointer>
|
#include <QtCore/QSharedPointer>
|
||||||
|
|
||||||
namespace Utils {
|
namespace Utils {
|
||||||
struct SshConnectionParameters;
|
class SshConnectionParameters;
|
||||||
class SshRemoteProcessRunner;
|
class SshRemoteProcessRunner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user