aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Unresolved.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/QPDF_Unresolved.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Unresolved.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/libqpdf/qpdf/QPDF_Unresolved.hh b/libqpdf/qpdf/QPDF_Unresolved.hh
new file mode 100644
index 00000000..efcf4e3d
--- /dev/null
+++ b/libqpdf/qpdf/QPDF_Unresolved.hh
@@ -0,0 +1,19 @@
+#ifndef QPDF_UNRESOLVED_HH
+#define QPDF_UNRESOLVED_HH
+
+#include <qpdf/QPDFValue.hh>
+
+class QPDF_Unresolved: public QPDFValue
+{
+ public:
+ virtual ~QPDF_Unresolved() = default;
+ static std::shared_ptr<QPDFObject> create(QPDF* qpdf, QPDFObjGen const& og);
+ virtual std::shared_ptr<QPDFObject> shallowCopy();
+ virtual std::string unparse();
+ virtual JSON getJSON(int json_version);
+
+ private:
+ QPDF_Unresolved(QPDF* qpdf, QPDFObjGen const& og);
+};
+
+#endif // QPDF_UNRESOLVED_HH