~ubuntu-branches/ubuntu/karmic/libtinymail/karmic

« back to all changes in this revision

Viewing changes to libtinymail-camel/camel-lite/camel/camel-news-address.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-10-12 11:21:12 UTC
  • Revision ID: james.westby@ubuntu.com-20071012112112-fod9fs7yrooxjr7i
Tags: upstream-0.0.2
ImportĀ upstreamĀ versionĀ 0.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 
2
/*
 
3
 *  Copyright (C) 2000 Ximian Inc.
 
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., 59 Temple Place - Suite 330,
 
19
 * Boston, MA 02111-1307, USA.
 
20
 */
 
21
 
 
22
 
 
23
#ifndef _CAMEL_NEWS_ADDRESS_H
 
24
#define _CAMEL_NEWS_ADDRESS_H
 
25
 
 
26
#include <camel/camel-address.h>
 
27
 
 
28
#define CAMEL_NEWS_ADDRESS(obj)         CAMEL_CHECK_CAST (obj, camel_news_address_get_type (), CamelNewsAddress)
 
29
#define CAMEL_NEWS_ADDRESS_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_news_address_get_type (), CamelNewsAddressClass)
 
30
#define CAMEL_IS_NEWS_ADDRESS(obj)      CAMEL_CHECK_TYPE (obj, camel_news_address_get_type ())
 
31
 
 
32
G_BEGIN_DECLS
 
33
 
 
34
typedef struct _CamelNewsAddressClass CamelNewsAddressClass;
 
35
 
 
36
struct _CamelNewsAddress {
 
37
        CamelAddress parent;
 
38
 
 
39
        struct _CamelNewsAddressPrivate *priv;
 
40
};
 
41
 
 
42
struct _CamelNewsAddressClass {
 
43
        CamelAddressClass parent_class;
 
44
};
 
45
 
 
46
CamelType               camel_news_address_get_type     (void);
 
47
CamelNewsAddress      *camel_news_address_new   (void);
 
48
 
 
49
G_END_DECLS
 
50
 
 
51
#endif /* ! _CAMEL_NEWS_ADDRESS_H */