]> www.fi.muni.cz Git - evince.git/blob - backend/tiff/tiff-document.h
4170cca612f2f22b2a51eb0129b120cbfc0dc5d6
[evince.git] / backend / tiff / tiff-document.h
1
2 /* pdfdocument.h: Implementation of EvDocument for tiffs
3  * Copyright (C) 2005, Jonathan Blandford <jrb@gnome.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program 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
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __TIFF_DOCUMENT_H__
21 #define __TIFF_DOCUMENT_H__
22
23 #include "ev-document.h"
24
25 G_BEGIN_DECLS
26
27 #define TIFF_TYPE_DOCUMENT             (tiff_document_get_type ())
28 #define TIFF_DOCUMENT(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), TIFF_TYPE_DOCUMENT, TiffDocument))
29 #define TIFF_IS_DOCUMENT(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TIFF_TYPE_DOCUMENT))
30
31 typedef struct _TiffDocument TiffDocument;
32
33 GType                 tiff_document_get_type  (void) G_GNUC_CONST;
34 G_MODULE_EXPORT GType register_evince_backend (GTypeModule *module);
35      
36 G_END_DECLS
37
38 #endif /* __TIFF_DOCUMENT_H__ */