diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.hxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx index 899fa0eac71f..37b2d6762fdc 100644 --- a/vcl/source/gdi/pdfwriter_impl.hxx +++ b/vcl/source/gdi/pdfwriter_impl.hxx @@ -372,6 +372,20 @@ struct PDFLink : public PDFAnnotation {} }; +/// A PDF embedded file. +struct PDFEmbeddedFile +{ + /// ID of the file. + sal_Int32 m_nObject; + /// Contents of the file. + std::shared_ptr<std::vector<sal_Int8>> m_pData; + + PDFEmbeddedFile() + : m_nObject(0) + { + } +}; + } class PDFWriterImpl : public VirtualDevice @@ -397,20 +411,6 @@ public: } }; - /// A PDF embedded file. - struct PDFEmbeddedFile - { - /// ID of the file. - sal_Int32 m_nObject; - /// Contents of the file. - std::shared_ptr<std::vector<sal_Int8>> m_pData; - - PDFEmbeddedFile() - : m_nObject(0) - { - } - }; - struct PDFNoteEntry : public PDFAnnotation { PDFNote m_aContents; |