pidgin/quail/qpurple

Add in the signal slot connections
default tip
2013-07-02, Phil Hannent
d2bb98edda86
Add in the signal slot connections
#ifndef QPURPLETIMER_H
#define QPURPLETIMER_H
#include "qpurple.h"
namespace QPurple {
class QPurpleTimer : QObject {
Q_OBJECT // required by Qt
GSourceFunc func;
gpointer data;
QTimer *timer;
public:
QPurpleTimer();
QPurpleTimer(GSourceFunc f, gpointer d, int i);
~QPurpleTimer();
int defaultConstructed;
public slots:
void callFunc();
};
}
#endif // QPURPLETIMER_H