Remove some Qt-dependencies

This commit is contained in:
Micke Prag 2010-08-27 10:14:12 +00:00
parent 5303970913
commit 96b581d96c
3 changed files with 7 additions and 9 deletions

View file

@ -12,7 +12,7 @@
#include "TellStick.h"
#include "TellStickDuo.h"
#include "telldus-core.h"
#include <string>
#include <string.h>
#include <stdlib.h>
using namespace TelldusCore;

View file

@ -13,6 +13,7 @@
#include "Thread.h"
#include "Manager.h"
#include <stdlib.h>
#include <string.h>
#if defined(_WINDOWS) && defined(LIBFTD2XX)
typedef HANDLE EVENT_HANDLE;
@ -42,7 +43,7 @@ namespace TelldusCore {
TellStickDuo *parent;
EVENT_HANDLE eh;
bool running;
QMutex mutex;
MUTEX mutex;
std::string message;
};
@ -91,7 +92,7 @@ PrivateTellStickDuoListener::~PrivateTellStickDuoListener() {
void PrivateTellStickDuoListener::stop() {
if (running) {
{
QMutexLocker locker(&mutex);
MutexLocker locker(&mutex);
running = false;
}
//Unlock the wait-condition
@ -123,7 +124,7 @@ void PrivateTellStickDuoListener::run() {
#endif
{
QMutexLocker locker(&mutex);
MutexLocker locker(&mutex);
running = true;
}
@ -139,7 +140,7 @@ void PrivateTellStickDuoListener::run() {
pthread_mutex_unlock(&eh.eMutex);
#endif
{
QMutexLocker locker(&mutex);
MutexLocker locker(&mutex);
if (!running) {
break;
}
@ -173,7 +174,7 @@ void PrivateTellStickDuoListener::processData( const std::string &data ) {
} else if (data[i] == 10) { // \n found
if (message.substr(0,2).compare("+V") == 0) {
//parent->fwVersion = atoi(message.substr(2).c_str());
printf("Firmware version: %s\n", message.substr(2).c_str());
//printf("Firmware version: %s\n", message.substr(2).c_str());
} else if (message.substr(0,2).compare("+R") == 0) {
Manager *manager = Manager::getInstance();
manager->parseMessage(message.substr(2), parent);

View file

@ -12,9 +12,6 @@
#ifndef TELLSTICKDUO_H
#define TELLSTICKDUO_H
#include <QThread>
#include <QMutex>
#include "TellStick.h"
#include "ftd2xx.h"