remotelinux/projectexplorer: move UsedPortsGatherer to projectexplorer

Change-Id: Iafd7f109de3076375e667aff0c429405cef07b55
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
hjk
2012-07-26 23:29:00 +02:00
committed by Christian Kandeler
parent bc1f091698
commit 88d413e03b
21 changed files with 68 additions and 93 deletions

View File

@@ -27,10 +27,10 @@
**
**
**************************************************************************/
#include "linuxdevicetester.h"
#include "remotelinuxusedportsgatherer.h"
#include <projectexplorer/devicesupport/deviceusedportsgatherer.h>
#include <utils/qtcassert.h>
#include <ssh/sshremoteprocess.h>
#include <ssh/sshconnection.h>
@@ -54,7 +54,7 @@ public:
IDevice::ConstPtr deviceConfiguration;
SshConnection *connection;
SshRemoteProcess::Ptr process;
RemoteLinuxUsedPortsGatherer portsGatherer;
DeviceUsedPortsGatherer portsGatherer;
State state;
};
@@ -113,7 +113,7 @@ void GenericLinuxDeviceTester::stopTest()
setFinished(TestFailure);
}
RemoteLinuxUsedPortsGatherer *GenericLinuxDeviceTester::usedPortsGatherer() const
DeviceUsedPortsGatherer *GenericLinuxDeviceTester::usedPortsGatherer() const
{
return &d->portsGatherer;
}