From 913eb5ac35011b3d28c653b6f89d936c8f99c844 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Tue, 22 Jan 2013 09:57:07 -0500 Subject: Add getTypeCode() and getTypeName() Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and implementations to all the QPDF_Object types. --- libqpdf/QPDF_Dictionary.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'libqpdf/QPDF_Dictionary.cc') diff --git a/libqpdf/QPDF_Dictionary.cc b/libqpdf/QPDF_Dictionary.cc index 3be138a4..0af2f4bf 100644 --- a/libqpdf/QPDF_Dictionary.cc +++ b/libqpdf/QPDF_Dictionary.cc @@ -39,6 +39,18 @@ QPDF_Dictionary::unparse() return result; } +QPDFObject::object_type_e +QPDF_Dictionary::getTypeCode() const +{ + return QPDFObject::ot_dictionary; +} + +char const* +QPDF_Dictionary::getTypeName() const +{ + return "dictionary"; +} + bool QPDF_Dictionary::hasKey(std::string const& key) { -- cgit v1.2.3-54-g00ecf