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.
tdelibs/kio/misc/ksendbugmail/main.h

21 lines
292 B

#ifndef BUG_MAILER_H
#define BUG_MAILER_H "$Id$"
#include <qobject.h>
class SMTP;
class BugMailer : public QObject {
Q_OBJECT
public:
BugMailer(SMTP* s) : QObject(0, "mailer"), sm(s) {}
public slots:
void slotError(int);
void slotSend();
private:
SMTP *sm;
};
#endif