#include #include std::shared_ptr QPDFValue::do_create(QPDFValue* object) { std::shared_ptr obj(new QPDFObject()); obj->value = std::shared_ptr(object); return obj; } std::string QPDFValue::getDescription() { if (object_description) { switch (object_description->index()) { case 0: { auto description = std::get<0>(*object_description); if (auto pos = description.find("$OG"); pos != std::string::npos) { description.replace(pos, 3, og.unparse(' ')); } if (auto pos = description.find("$PO"); pos != std::string::npos) { qpdf_offset_t shift = (type_code == ::ot_dictionary) ? 2 : (type_code == ::ot_array) ? 1 : 0; description.replace( pos, 3, std::to_string(parsed_offset + shift)); } return description; } } } else if (og.isIndirect()) { return "object " + og.unparse(' '); } return {}; }