Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / camel-sasl-login.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Authors: Jeffrey Stedfast <fejj@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_LOGIN_H
24 #define CAMEL_SASL_LOGIN_H
25
26 #include <camel/camel-sasl.h>
27
28 #define CAMEL_SASL_LOGIN_TYPE     (camel_sasl_login_get_type ())
29 #define CAMEL_SASL_LOGIN(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_SASL_LOGIN_TYPE, CamelSaslLogin))
30 #define CAMEL_SASL_LOGIN_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_SASL_LOGIN_TYPE, CamelSaslLoginClass))
31 #define CAMEL_IS_SASL_LOGIN(o)    (CAMEL_CHECK_TYPE((o), CAMEL_SASL_LOGIN_TYPE))
32
33 G_BEGIN_DECLS
34
35 typedef struct _CamelSaslLogin {
36         CamelSasl parent_object;
37         
38         struct _CamelSaslLoginPrivate *priv;
39         
40 } CamelSaslLogin;
41
42
43 typedef struct _CamelSaslLoginClass {
44         CamelSaslClass parent_class;
45         
46 } CamelSaslLoginClass;
47
48
49 /* Standard Camel function */
50 CamelType camel_sasl_login_get_type (void);
51
52 extern CamelServiceAuthType camel_sasl_login_authtype;
53
54 G_END_DECLS
55
56 #endif /* CAMEL_SASL_LOGIN_H */