QPDFValue.cc 273 Bytes
#include <qpdf/QPDFValue.hh>

#include <qpdf/QPDFValueProxy.hh>

std::shared_ptr<QPDFValueProxy>
QPDFValue::do_create(QPDFValue* object)
{
    std::shared_ptr<QPDFValueProxy> obj(new QPDFValueProxy());
    obj->value = std::shared_ptr<QPDFValue>(object);
    return obj;
}