mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-31 14:01:59 +00:00
Add default move constructor/assignment to QPDFObjectHandle
This commit is contained in:
parent
7aa2306ef4
commit
416d9668ee
@ -330,8 +330,12 @@ class QPDFObjectHandle
|
||||
QPDF_DLL
|
||||
QPDFObjectHandle(QPDFObjectHandle const&) = default;
|
||||
QPDF_DLL
|
||||
QPDFObjectHandle(QPDFObjectHandle&&) = default;
|
||||
QPDF_DLL
|
||||
QPDFObjectHandle& operator=(QPDFObjectHandle const&) = default;
|
||||
QPDF_DLL
|
||||
QPDFObjectHandle& operator=(QPDFObjectHandle&&) = default;
|
||||
QPDF_DLL
|
||||
inline bool isInitialized() const;
|
||||
|
||||
// This method returns true if the QPDFObjectHandle objects point
|
||||
|
Loading…
Reference in New Issue
Block a user