Code

Initial commit of native poppler-based PDF import.
[inkscape.git] / src / extension / internal / pdfinput / pdf-input.h
1 #ifndef __EXTENSION_INTERNAL_PDFINPUT_H__
2 #define __EXTENSION_INTERNAL_PDFINPUT_H__
4  /** \file
5  * PDF import using libpoppler.
6  *
7  * Authors:
8  *   miklos erdelyi
9  *
10  * Copyright (C) 2007 Authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #ifdef HAVE_CONFIG_H
16 # include <config.h>
17 #endif
19 #ifdef HAVE_POPPLER
21 #include "../../implementation/implementation.h"
23 namespace Inkscape {
24 namespace Extension {
25 namespace Internal {
27 class PdfInput: public Inkscape::Extension::Implementation::Implementation {
28     PdfInput () { };
29 public:
30     SPDocument *open( Inkscape::Extension::Input *mod,
31                                 const gchar *uri );
32     static void         init( void );
34 };
36 } } }  /* namespace Inkscape, Extension, Implementation */
38 #endif /* HAVE_POPPLER */
40 #endif /* __EXTENSION_INTERNAL_PDFINPUT_H__ */
42 /*
43   Local Variables:
44   mode:c++
45   c-file-style:"stroustrup"
46   c-file-offsets:((innamespace . 0)(inline-open . 0))
47   indent-tabs-mode:nil
48   fill-column:99
49   End:
50 */
51 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :