kmail

mailserviceimpl.h
1/*
2 *
3 * This file is part of KMail, the KDE mail client.
4 * Copyright (c) 2003 Zack Rusin <zack@kde.org>
5 *
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.
9 *
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.
14 *
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
18 *
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 TQt library by Trolltech AS, Norway (or with modified versions
22 * of TQt that use the same license as TQt), 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 * TQt. 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.
29 */
30#ifndef MAILSERVICEIMPL_H
31#define MAILSERVICEIMPL_H
32
33#include <tqcstring.h>
34
35#include "interfaces/MailTransportServiceIface.h"
36
37class TQString;
38class KURL;
39
40namespace KMail {
41
42 class MailServiceImpl : virtual public KPim::MailTransportServiceIface
43 {
44 public:
45 MailServiceImpl();
46 bool sendMessage( const TQString& from, const TQString& to,
47 const TQString& cc, const TQString& bcc,
48 const TQString& subject, const TQString& body,
49 const KURL::List& attachments );
50
51 // FIXME KDE 4.0: Remove this.
52 // (cf. libtdepim/interfaces/MailTransportServiceIface.h)
53 bool sendMessage( const TQString& to,
54 const TQString& cc, const TQString& bcc,
55 const TQString& subject, const TQString& body,
56 const KURL::List& attachments );
57
58 bool sendMessage( const TQString& from, const TQString& to,
59 const TQString& cc, const TQString& bcc,
60 const TQString& subject, const TQString& body,
61 const TQByteArray& attachment );
62
63 // FIXME KDE 4.0: Remove this.
64 // (cf. libtdepim/interfaces/MailTransportServiceIface.h)
65 bool sendMessage( const TQString& to,
66 const TQString& cc, const TQString& bcc,
67 const TQString& subject, const TQString& body,
68 const TQByteArray& attachment );
69
70 };
71}
72
73#endif
folderdiaquotatab.h
Definition: aboutdata.cpp:40