Implemented function Event::clearEvent() on Unix

This commit is contained in:
Micke Prag 2010-10-12 07:24:58 +00:00
parent 1a1eb08444
commit 74c26d747e

View file

@ -6,7 +6,8 @@ class Event::PrivateData {
public:
};
Event::Event(EventHandler *handler) {
Event::Event(EventHandler *handler)
:EventBase(handler){
d = new PrivateData;
}
@ -14,6 +15,9 @@ Event::~Event(void) {
delete d;
}
void Event::clearSignal() {
}
void Event::sendSignal() {
EventHandler *handler = this->handler();
if (handler) {