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