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/tdeio/misc/tdesendbugmail/main.h

21 lines
296 B

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