2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 01:40:51 +00:00
qpdf/libqpdf/QPDFValueProxy.cc

18 lines
281 B
C++
Raw Normal View History

#include <qpdf/QPDFValueProxy.hh>
2022-08-14 09:50:30 +00:00
#include <qpdf/QPDF.hh>
#include <qpdf/QPDF_Destroyed.hh>
2022-08-14 09:50:30 +00:00
void
QPDFValueProxy::doResolve()
2022-08-14 09:50:30 +00:00
{
auto og = value->og;
QPDF::Resolver::resolve(value->qpdf, og);
}
void
QPDFValueProxy::destroy()
{
value = QPDF_Destroyed::getInstance();
}