Fix Bug 361605 - kmail crash on double click email
[kdepim.git] / kmail / mailserviceimpl.h
blob75831bbb47aa5045f86eac65b6f15395af7d621a
1 /*
3 * This file is part of KMail, the KDE mail client.
4 * Copyright (c) 2003 Zack Rusin <zack@kde.org>
6 * KMail is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License, version 2, as
8 * published by the Free Software Foundation.
10 * KMail is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * In addition, as a special exception, the copyright holders give
20 * permission to link the code of this program with any edition of
21 * the Qt library by Trolltech AS, Norway (or with modified versions
22 * of Qt that use the same license as Qt), and distribute linked
23 * combinations including the two. You must obey the GNU General
24 * Public License in all respects for all of the code used other than
25 * Qt. If you modify this file, you may extend this exception to
26 * your version of the file, but you are not obligated to do so. If
27 * you do not wish to do so, delete this exception statement from
28 * your version.
30 #ifndef MAILSERVICEIMPL_H
31 #define MAILSERVICEIMPL_H
33 class QByteArray;
34 class QString;
35 #include <QObject>
37 namespace KMail
40 // This class implements the D-Bus interface
41 // libkdepim/interfaces/org.kde.mailtransport.service.xml
42 class MailServiceImpl : public QObject
44 Q_OBJECT
45 public:
46 MailServiceImpl();
47 bool sendMessage(const QString &from, const QString &to,
48 const QString &cc, const QString &bcc,
49 const QString &subject, const QString &body,
50 const QStringList &attachments);
52 bool sendMessage(const QString &from, const QString &to,
53 const QString &cc, const QString &bcc,
54 const QString &subject, const QString &body,
55 const QByteArray &attachment);
60 #endif