From 5159cd2beb2e87806a5b54e9991b7895285c9d3e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 01:04:16 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- tdeio/misc/tdesendbugmail/main.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tdeio/misc/tdesendbugmail/main.h (limited to 'tdeio/misc/tdesendbugmail/main.h') diff --git a/tdeio/misc/tdesendbugmail/main.h b/tdeio/misc/tdesendbugmail/main.h new file mode 100644 index 000000000..39d424bef --- /dev/null +++ b/tdeio/misc/tdesendbugmail/main.h @@ -0,0 +1,20 @@ +#ifndef BUG_MAILER_H +#define BUG_MAILER_H "$Id$" + +#include + +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 -- cgit v1.2.1