Convert dos endings to unix in telldus-core, see #160

This commit is contained in:
Micke Prag 2012-02-27 17:37:52 +01:00
parent bdd95b8d78
commit 9500c4c898
72 changed files with 8881 additions and 8881 deletions

View file

@ -1,28 +1,28 @@
#include "Event.h"
#include "EventHandler.h"
#include "Thread.h"
using namespace TelldusCore;
class Event::PrivateData {
public:
};
Event::Event(EventHandler *handler)
:EventBase(handler){
d = new PrivateData;
}
Event::~Event(void) {
delete d;
}
void Event::clearSignal() {
}
void Event::sendSignal() {
EventHandler *handler = this->handler();
if (handler) {
handler->signal(this);
}
}
#include "Event.h"
#include "EventHandler.h"
#include "Thread.h"
using namespace TelldusCore;
class Event::PrivateData {
public:
};
Event::Event(EventHandler *handler)
:EventBase(handler){
d = new PrivateData;
}
Event::~Event(void) {
delete d;
}
void Event::clearSignal() {
}
void Event::sendSignal() {
EventHandler *handler = this->handler();
if (handler) {
handler->signal(this);
}
}