QPDFValue.cc 257 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 #include <qpdf/QPDFValue.hh> #include <qpdf/QPDFObject.hh> std::shared_ptr<QPDFObject> QPDFValue::do_create(QPDFValue* object) { std::shared_ptr<QPDFObject> obj(new QPDFObject()); obj->value = std::shared_ptr<QPDFValue>(object); return obj; }