Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • qpdf
  • libqpdf
  • QPDFObject.cc
  • Rename QPDFValueProxy.hh and QPDFValueProxy.cc ...
    25ccc7ea
    Preparing to change the class name back to QPDFObject
    Jay Berkenbilt authored
    2022-09-08 11:19:49 -0400  
    Browse Code ยป
QPDFObject.cc 285 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#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();
}