Commit 2757b9b05f0308253325cae7076c5e4bbd5de35d

Authored by Jay Berkenbilt
1 parent 13c1304c

export new methods

Showing 1 changed file with 3 additions and 0 deletions
include/qpdf/QPDFWriter.hh
... ... @@ -61,17 +61,20 @@ class QPDFWriter
61 61 // useful for tracking down problems. If your application doesn't
62 62 // want the partially written file to be left behind, you should
63 63 // delete it the eventual call to write fails.
  64 + QPDF_DLL
64 65 void setOutputFilename(char const* filename);
65 66  
66 67 // Indicate that QPDFWriter should create a memory buffer to
67 68 // contain the final PDF file. Obtain the memory by calling
68 69 // getBuffer().
  70 + QPDF_DLL
69 71 void setOutputMemory();
70 72  
71 73 // Return the buffer object containing the PDF file. If
72 74 // setOutputMemory() has been called, this method may be called
73 75 // exactly one time after write() has returned. The caller is
74 76 // responsible for deleting the buffer when done.
  77 + QPDF_DLL
75 78 Buffer* getBuffer();
76 79  
77 80 // Setting Parameters
... ...