From 2757b9b05f0308253325cae7076c5e4bbd5de35d Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 11 Aug 2011 15:55:06 -0400 Subject: export new methods --- include/qpdf/QPDFWriter.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh index a14ae514..a8a51791 100644 --- a/include/qpdf/QPDFWriter.hh +++ b/include/qpdf/QPDFWriter.hh @@ -61,17 +61,20 @@ class QPDFWriter // useful for tracking down problems. If your application doesn't // want the partially written file to be left behind, you should // delete it the eventual call to write fails. + QPDF_DLL void setOutputFilename(char const* filename); // Indicate that QPDFWriter should create a memory buffer to // contain the final PDF file. Obtain the memory by calling // getBuffer(). + QPDF_DLL void setOutputMemory(); // Return the buffer object containing the PDF file. If // setOutputMemory() has been called, this method may be called // exactly one time after write() has returned. The caller is // responsible for deleting the buffer when done. + QPDF_DLL Buffer* getBuffer(); // Setting Parameters -- cgit v1.2.3-54-g00ecf