pidgin/quail/qpurple

Add a file type to the ignore list

2013-07-01, Phil Hannent
666792219b0e
Add a file type to the ignore list
#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