~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/poppler/poppler/StdinPDFDocBuilder.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//========================================================================
 
2
//
 
3
// StdinPDFDocBuilder.h
 
4
//
 
5
// This file is licensed under the GPLv2 or later
 
6
//
 
7
// Copyright 2010 Hib Eris <hib@hiberis.nl>
 
8
// Copyright 2010 Albert Astals Cid <aacid@kde.org>
 
9
//
 
10
//========================================================================
 
11
 
 
12
#ifndef STDINPDFDOCBUILDER_H
 
13
#define STDINPDFDOCBUILDER_H
 
14
 
 
15
#include "PDFDocBuilder.h"
 
16
 
 
17
//------------------------------------------------------------------------
 
18
// StdinPDFDocBuilder
 
19
//
 
20
// The StdinPDFDocBuilder implements a PDFDocBuilder that read from stdin.
 
21
//------------------------------------------------------------------------
 
22
 
 
23
class StdinPDFDocBuilder : public PDFDocBuilder {
 
24
 
 
25
public:
 
26
 
 
27
  PDFDoc *buildPDFDoc(const GooString &uri, GooString *ownerPassword = NULL,
 
28
    GooString *userPassword = NULL, void *guiDataA = NULL);
 
29
  GBool supports(const GooString &uri);
 
30
 
 
31
};
 
32
 
 
33
#endif /* STDINPDFDOCBUILDER_H */