build: Add an --enable-code-coverage configure option to enable gcov support
[platform/upstream/evolution-data-server.git] / camel / camel-nntp-address.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
4  *
5  * Authors: Michael Zucchi <notzed@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 #if !defined (__CAMEL_H_INSIDE__) && !defined (CAMEL_COMPILATION)
23 #error "Only <camel/camel.h> can be included directly."
24 #endif
25
26 #ifndef CAMEL_NNTP_ADDRESS_H
27 #define CAMEL_NNTP_ADDRESS_H
28
29 #include <camel/camel-address.h>
30
31 /* Standard GObject macros */
32 #define CAMEL_TYPE_NNTP_ADDRESS \
33         (camel_nntp_address_get_type ())
34 #define CAMEL_NNTP_ADDRESS(obj) \
35         (G_TYPE_CHECK_INSTANCE_CAST \
36         ((obj), CAMEL_TYPE_NNTP_ADDRESS, CamelNNTPAddress))
37 #define CAMEL_NNTP_ADDRESS_CLASS(cls) \
38         (G_TYPE_CHECK_CLASS_CAST \
39         ((cls), CAMEL_TYPE_NNTP_ADDRESS, CamelNNTPAddressClass))
40 #define CAMEL_IS_NNTP_ADDRESS(obj) \
41         (G_TYPE_CHECK_INSTANCE_TYPE \
42         ((obj), CAMEL_TYPE_NNTP_ADDRESS))
43 #define CAMEL_IS_NNTP_ADDRESS_CLASS(cls) \
44         (G_TYPE_CHECK_CLASS_TYPE \
45         ((cls), CAMEL_TYPE_NNTP_ADDRESS))
46 #define CAMEL_NNTP_ADDRESS_GET_CLASS(obj) \
47         (G_TYPE_INSTANCE_GET_CLASS \
48         ((obj), CAMEL_TYPE_NTTP_ADDRESS, CamelNNTPAddressClass))
49
50 G_BEGIN_DECLS
51
52 typedef struct _CamelNNTPAddress CamelNNTPAddress;
53 typedef struct _CamelNNTPAddressClass CamelNNTPAddressClass;
54 typedef struct _CamelNNTPAddressPrivate CamelNNTPAddressPrivate;
55
56 struct _CamelNNTPAddress {
57         CamelAddress parent;
58         CamelNNTPAddressPrivate *priv;
59 };
60
61 struct _CamelNNTPAddressClass {
62         CamelAddressClass parent_class;
63 };
64
65 GType           camel_nntp_address_get_type     (void);
66 CamelNNTPAddress *
67                 camel_nntp_address_new          (void);
68 gint            camel_nntp_address_add          (CamelNNTPAddress *a,
69                                                  const gchar *name);
70 gboolean        camel_nntp_address_get          (CamelNNTPAddress *a,
71                                                  gint index,
72                                                  const gchar **namep);
73
74 G_END_DECLS
75
76 #endif /* CAMEL_NNTP_ADDRESS_H */