You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef BUG_MAILER_H
|
|
#define BUG_MAILER_H "$Id$"
|
|
|
|
#include <tqobject.h>
|
|
|
|
class SMTP;
|
|
|
|
class BugMailer : public TQObject {
|
|
Q_OBJECT
|
|
public:
|
|
BugMailer(SMTP* s) : TQObject(0, "mailer"), sm(s) {}
|
|
|
|
public slots:
|
|
void slotError(int);
|
|
void slotSend();
|
|
private:
|
|
SMTP *sm;
|
|
};
|
|
|
|
#endif
|