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:
Tobias Hunger
2011-06-04 20:40:59 +02:00
parent c95874f41d
commit 6e5db5f444
3 changed files with 4 additions and 3 deletions

View File

@@ -50,8 +50,9 @@ namespace Internal {
class SshConnectionPrivate;
} // namespace Internal
struct QTCREATOR_UTILS_EXPORT SshConnectionParameters
class QTCREATOR_UTILS_EXPORT SshConnectionParameters
{
public:
enum ProxyType { DefaultProxy, NoProxy };
enum AuthenticationType { AuthenticationByPassword, AuthenticationByKey };
SshConnectionParameters(ProxyType proxyType);

View File

@@ -40,7 +40,7 @@
namespace Utils {
class SshConnection;
struct SshConnectionParameters;
class SshConnectionParameters;
namespace Internal { class SshConnectionManagerPrivate; }
class QTCREATOR_UTILS_EXPORT SshConnectionManager

View File

@@ -36,7 +36,7 @@
#include <QtCore/QSharedPointer>
namespace Utils {
struct SshConnectionParameters;
class SshConnectionParameters;
class SshRemoteProcessRunner;
}