Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / providers / sendmail / camel-sendmail-transport.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-sendmail-transport.h: Sendmail-based transport class */
3
4 /* 
5  *
6  * Author : 
7  *  Dan Winship <danw@ximian.com>
8  *
9  * Copyright 2000 Ximian, Inc. (www.ximian.com)
10  *
11  * This program is free software; you can redistribute it and/or 
12  * modify it under the terms of version 2 of the GNU Lesser General Public 
13  * License as published by the Free Software Foundation.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
23  * USA
24  */
25
26
27 #ifndef CAMEL_SENDMAIL_TRANSPORT_H
28 #define CAMEL_SENDMAIL_TRANSPORT_H 1
29
30 #include "camel-transport.h"
31
32 #define CAMEL_SENDMAIL_TRANSPORT_TYPE     (camel_sendmail_transport_get_type ())
33 #define CAMEL_SENDMAIL_TRANSPORT(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_SENDMAIL_TRANSPORT_TYPE, CamelSendmailTransport))
34 #define CAMEL_SENDMAIL_TRANSPORT_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_SENDMAIL_TRANSPORT_TYPE, CamelSendmailTransportClass))
35 #define CAMEL_IS_SENDMAIL_TRANSPORT(o)    (CAMEL_CHECK_TYPE((o), CAMEL_SENDMAIL_TRANSPORT_TYPE))
36
37 G_BEGIN_DECLS
38
39 typedef struct {
40         CamelTransport parent_object;
41
42 } CamelSendmailTransport;
43
44
45 typedef struct {
46         CamelTransportClass parent_class;
47
48 } CamelSendmailTransportClass;
49
50
51 /* Standard Camel function */
52 CamelType camel_sendmail_transport_get_type (void);
53
54 G_END_DECLS
55
56 #endif /* CAMEL_SENDMAIL_TRANSPORT_H */