mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-08 14:21:06 +00:00
25ccc7eae4
Preparing to change the class name back to QPDFObject
18 lines
285 B
C++
18 lines
285 B
C++
#include <qpdf/QPDFObject_private.hh>
|
|
|
|
#include <qpdf/QPDF.hh>
|
|
#include <qpdf/QPDF_Destroyed.hh>
|
|
|
|
void
|
|
QPDFValueProxy::doResolve()
|
|
{
|
|
auto og = value->og;
|
|
QPDF::Resolver::resolve(value->qpdf, og);
|
|
}
|
|
|
|
void
|
|
QPDFValueProxy::destroy()
|
|
{
|
|
value = QPDF_Destroyed::getInstance();
|
|
}
|