aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Operator.hh
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2022-08-02 22:35:04 +0200
committerm-holger <m-holger@kubitscheck.org>2022-09-01 15:19:34 +0200
commit431bd666c0504af0c8a016a96a73b7efbf9737c9 (patch)
tree26fcbcb8e62fcb87aa1a694fad5172f92c6eab7c /libqpdf/qpdf/QPDF_Operator.hh
parent43983109f25ba12db3fded12d0ea9a991b8a1d5c (diff)
downloadqpdf-431bd666c0504af0c8a016a96a73b7efbf9737c9.tar.zst
Split QPDFObject into QPDFObject and QPDFValue
Diffstat (limited to 'libqpdf/qpdf/QPDF_Operator.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Operator.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/qpdf/QPDF_Operator.hh b/libqpdf/qpdf/QPDF_Operator.hh
index 1da43d72..d17f1629 100644
--- a/libqpdf/qpdf/QPDF_Operator.hh
+++ b/libqpdf/qpdf/QPDF_Operator.hh
@@ -1,9 +1,9 @@
#ifndef QPDF_OPERATOR_HH
#define QPDF_OPERATOR_HH
-#include <qpdf/QPDFObject.hh>
+#include <qpdf/QPDFValue.hh>
-class QPDF_Operator: public QPDFObject
+class QPDF_Operator: public QPDFValue
{
public:
virtual ~QPDF_Operator() = default;
@@ -11,7 +11,7 @@ class QPDF_Operator: public QPDFObject
virtual std::shared_ptr<QPDFObject> shallowCopy();
virtual std::string unparse();
virtual JSON getJSON(int json_version);
- virtual QPDFObject::object_type_e getTypeCode() const;
+ virtual qpdf_object_type_e getTypeCode() const;
virtual char const* getTypeName() const;
std::string getVal() const;