mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
18a583e8d9
QPDFValueProxy wasn't a good name for it. We decided the evil of having the header file be named QPDFObject_private.hh was less than the evil of having the class be named something other than what it should have been named.
18 lines
277 B
C++
18 lines
277 B
C++
#include <qpdf/QPDFObject_private.hh>
|
|
|
|
#include <qpdf/QPDF.hh>
|
|
#include <qpdf/QPDF_Destroyed.hh>
|
|
|
|
void
|
|
QPDFObject::doResolve()
|
|
{
|
|
auto og = value->og;
|
|
QPDF::Resolver::resolve(value->qpdf, og);
|
|
}
|
|
|
|
void
|
|
QPDFObject::destroy()
|
|
{
|
|
value = QPDF_Destroyed::getInstance();
|
|
}
|