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