]> www.fi.muni.cz Git - evince.git/blob - pdf/xpdf/gpdf.cc
Initial work I did on GNOME/PDF viewer -miguel
[evince.git] / pdf / xpdf / gpdf.cc
1 //========================================================================
2 //
3 // xpdf.cc
4 //
5 // Copyright 1996 Derek B. Noonburg
6 // Copyright 1999 Miguel de Icaza
7 //
8 //========================================================================
9
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <stddef.h>
14 #include <string.h>
15 #include <gnome.h>
16 #include "gtypes.h"
17 #include "GString.h"
18 #include "parseargs.h"
19 #include "gfile.h"
20 #include "gmem.h"
21 #include "Object.h"
22 #include "Stream.h"
23 #include "Array.h"
24 #include "Dict.h"
25 #include "XRef.h"
26 #include "Catalog.h"
27 #include "Page.h"
28 #include "Link.h"
29 #include "PDFDoc.h"
30 #include "XOutputDev.h"
31 #include "PSOutputDev.h"
32 #include "TextOutputDev.h"
33 #include "Params.h"
34 #include "Error.h"
35 #include "config.h"
36
37 int
38 main (int argc, char *argv [])
39 {
40         gnome_init ("GPDF", "1.0", argv, argv);
41
42         gtk_main ();
43 }