Convert dos endings to unix in telldus-core, see #160
This commit is contained in:
parent
bdd95b8d78
commit
9500c4c898
72 changed files with 8881 additions and 8881 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue