summaryrefslogtreecommitdiffstats
path: root/include/qpdf/BufferInputSource.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/BufferInputSource.hh')
-rw-r--r--include/qpdf/BufferInputSource.hh23
1 files changed, 19 insertions, 4 deletions
diff --git a/include/qpdf/BufferInputSource.hh b/include/qpdf/BufferInputSource.hh
index 51bb98f9..90263335 100644
--- a/include/qpdf/BufferInputSource.hh
+++ b/include/qpdf/BufferInputSource.hh
@@ -56,10 +56,25 @@ class BufferInputSource: public InputSource
private:
qpdf_offset_t const bufSizeAsOffset() const;
- bool own_memory;
- std::string description;
- Buffer* buf;
- qpdf_offset_t cur_offset;
+ class Members
+ {
+ friend class BufferInputSource;
+
+ public:
+ QPDF_DLL
+ ~Members();
+
+ private:
+ Members(bool own_memory, std::string const& description, Buffer* buf);
+ Members(Members const&);
+
+ bool own_memory;
+ std::string description;
+ Buffer* buf;
+ qpdf_offset_t cur_offset;
+ };
+
+ PointerHolder<Members> m;
};
#endif // QPDF_BUFFERINPUTSOURCE_HH