aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-05-07 14:20:09 +0200
committerJay Berkenbilt <ejb@ql.org>2022-05-08 19:45:20 +0200
commit3246923cf2189554f7c348ebf51c9774c09deec8 (patch)
treea402b44a775aaa6a113f1d311107461a3a2258a2 /libqpdf/qpdf
parent16f4f94cd99b4d0f633596074e8d9358db135517 (diff)
downloadqpdf-3246923cf2189554f7c348ebf51c9774c09deec8.tar.zst
Implement JSON v2 for String
Also refine the herustic for deciding whether to use hexadecimal notation for a string.
Diffstat (limited to 'libqpdf/qpdf')
-rw-r--r--libqpdf/qpdf/QPDF_String.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/libqpdf/qpdf/QPDF_String.hh b/libqpdf/qpdf/QPDF_String.hh
index df33138c..6fd1b0e9 100644
--- a/libqpdf/qpdf/QPDF_String.hh
+++ b/libqpdf/qpdf/QPDF_String.hh
@@ -20,6 +20,7 @@ class QPDF_String: public QPDFObject
std::string getUTF8Val() const;
private:
+ bool useHexString() const;
std::string val;
};