2002-02-13 Lutz Müller <lutz@users.sourceforge.net>
[platform/upstream/libexif.git] / libexif / exif-content.h
1 /* exif-content.h
2  *
3  * Copyright (C) 2001 Lutz Müller <lutz@users.sourceforge.net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful, 
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of 
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details. 
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __EXIF_CONTENT_H__
22 #define __EXIF_CONTENT_H__
23
24 typedef struct _ExifContent        ExifContent;
25 typedef struct _ExifContentPrivate ExifContentPrivate;
26
27 #include <libexif/exif-tag.h>
28 #include <libexif/exif-entry.h>
29 #include <libexif/exif-data.h>
30
31 struct _ExifContent
32 {
33         ExifEntry **entries;
34         unsigned int count;
35
36         /* Data containing this content */
37         ExifData *parent;
38
39         ExifContentPrivate *priv;
40 };
41
42 /* Lifecycle */
43 ExifContent *exif_content_new   (void);
44 void         exif_content_ref   (ExifContent *content);
45 void         exif_content_unref (ExifContent *content);
46 void         exif_content_free  (ExifContent *content);
47
48 void         exif_content_add_entry     (ExifContent *content, ExifEntry *e);
49 void         exif_content_remove_entry  (ExifContent *content, ExifEntry *e);
50 ExifEntry   *exif_content_get_entry     (ExifContent *content, ExifTag tag);
51
52 typedef void (* ExifContentForeachEntryFunc) (ExifEntry *, void *user_data);
53 void         exif_content_foreach_entry (ExifContent *content,
54                                          ExifContentForeachEntryFunc func,
55                                          void *user_data);
56
57 void         exif_content_dump  (ExifContent *content, unsigned int indent);
58
59 #endif /* __EXIF_CONTENT_H__ */