mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-23 11:28:56 +00:00
16f4f94cd9
Update getJSON() methods and calls to them
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
#ifndef QPDF_DICTIONARY_HH
|
|
#define QPDF_DICTIONARY_HH
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
#include <map>
|
|
#include <set>
|
|
|
|
#include <qpdf/QPDFObjectHandle.hh>
|
|
|
|
class QPDF_Dictionary: public QPDFObject
|
|
{
|
|
public:
|
|
QPDF_Dictionary(std::map<std::string, QPDFObjectHandle> const& items);
|
|
virtual ~QPDF_Dictionary() = default;
|
|
virtual std::string unparse();
|
|
virtual JSON getJSON(int json_version);
|
|
virtual QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
virtual void setDescription(QPDF*, std::string const&);
|
|
|
|
// hasKey() and getKeys() treat keys with null values as if they
|
|
// aren't there. getKey() returns null for the value of a
|
|
// non-existent key. This is as per the PDF spec.
|
|
bool hasKey(std::string const&);
|
|
QPDFObjectHandle getKey(std::string const&);
|
|
std::set<std::string> getKeys();
|
|
std::map<std::string, QPDFObjectHandle> const& getAsMap() const;
|
|
|
|
// If value is null, remove key; otherwise, replace the value of
|
|
// key, adding it if it does not exist.
|
|
void replaceKey(std::string const& key, QPDFObjectHandle value);
|
|
// Remove key, doing nothing if key does not exist
|
|
void removeKey(std::string const& key);
|
|
|
|
protected:
|
|
virtual void releaseResolved();
|
|
|
|
private:
|
|
std::map<std::string, QPDFObjectHandle> items;
|
|
};
|
|
|
|
#endif // QPDF_DICTIONARY_HH
|