diff options
author | David Schulz <[email protected]> | 2013-09-16 15:30:30 +0200 |
---|---|---|
committer | David Schulz <[email protected]> | 2013-09-20 10:48:47 +0200 |
commit | a06af356318bb8ed7a402bc5e5beee3b268df521 (patch) | |
tree | b936265f13596f406a2bf9eb7c0aa16dfad6813e /src/plugins/android/androiddevice.cpp | |
parent | ca15d0aa95fec76ce41c72ed747894969c978986 (diff) |
ProjectExplorer: Introduce DeviceProcessSignalOperation.
Every device can now return a DeviceProcessSignalOperation,
which allows to kill or interrupt processes running on the
device.
Change-Id: Idaa04ebc767e09ca167fa033ed93860b9b81479e
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: David Kaspar <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r-- | src/plugins/android/androiddevice.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index 374b4ad3a1b..8fd3d94e2d3 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -89,6 +89,11 @@ bool AndroidDevice::canAutoDetectPorts() const return true; } +DeviceProcessSignalOperation::Ptr AndroidDevice::signalOperation() const +{ + return DeviceProcessSignalOperation::Ptr(); +} + IDevice::Ptr AndroidDevice::clone() const { return IDevice::Ptr(new AndroidDevice(*this)); |