Remove Boost Dependency - Devices

All devices no longer need boost (use signals and slots instead), other
than SRM.
This commit is contained in:
Andy Bryson
2012-12-28 11:05:48 +00:00
committed by Mark Liversedge
parent 9039fca136
commit 356a80a448
11 changed files with 81 additions and 84 deletions

View File

@@ -17,6 +17,7 @@
*/
#include "Device.h"
#include "assert.h"
typedef QMap<QString,DevicesPtr> DevicesMap;
@@ -39,7 +40,6 @@ Device::~Device()
bool
Device::preview( QString &err )
{
(void) statusCallback;
(void) err;
return true;
@@ -60,6 +60,12 @@ Device::cleanup( QString &err )
return false;
}
void
Device::cancelled()
{
m_Cancelled = true;
}
QList<QString>
Devices::typeNames()