]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-images.c
Include config.h. Bug #504721.
[evince.git] / libdocument / ev-document-images.c
1 /* ev-document-images.c
2  *  this file is part of evince, a gnome document_links viewer
3  * 
4  * Copyright (C) 2006 Carlos Garcia Campos <carlosgc@gnome.org>
5  *
6  * Evince is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Evince is distributed in the hope that it will be useful, but
12  * 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 General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include <config.h>
22 #include "ev-document-images.h"
23
24 GType
25 ev_document_images_get_type (void)
26 {
27         static GType type = 0;
28
29         if (G_UNLIKELY (type == 0)) {
30                 const GTypeInfo our_info = {
31                         sizeof (EvDocumentImagesIface),
32                         NULL,
33                         NULL,
34                 };
35
36                 type = g_type_register_static (G_TYPE_INTERFACE,
37                                                "EvDocumentImages",
38                                                &our_info, (GTypeFlags)0);
39         }
40
41         return type;
42 }
43
44 GList *
45 ev_document_images_get_images (EvDocumentImages *document_images,
46                                gint              page)
47 {
48         EvDocumentImagesIface *iface = EV_DOCUMENT_IMAGES_GET_IFACE (document_images);
49         GList *retval;
50
51         retval = iface->get_images (document_images, page);
52
53         return retval;
54 }
55
56