blob: 162dfb43d659886b40caf0680840d108e6aa1302 [file] [log] [blame]
#ifndef __POPPLER_PRIVATE_H__
#define __POPPLER_PRIVATE_H__
#include <PDFDoc.h>
#include <Link.h>
struct _PopplerDocument
{
GObject parent_instance;
PDFDoc *doc;
};
struct _PopplerPage
{
GObject parent_instance;
PopplerDocument *document;
Page *page;
int index;
};
PopplerPage *_poppler_page_new (PopplerDocument *document,
Page *page,
int index);
PopplerAction *_poppler_action_new (PopplerDocument *document,
LinkAction *link,
const gchar *title);
#endif