aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Integer.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/QPDF_Integer.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Integer.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/libqpdf/qpdf/QPDF_Integer.hh b/libqpdf/qpdf/QPDF_Integer.hh
index 36001a14..2c17daf0 100644
--- a/libqpdf/qpdf/QPDF_Integer.hh
+++ b/libqpdf/qpdf/QPDF_Integer.hh
@@ -6,8 +6,9 @@
class QPDF_Integer: public QPDFObject
{
public:
- QPDF_Integer(long long val);
virtual ~QPDF_Integer() = default;
+ static std::shared_ptr<QPDFObject> create(long long value);
+ virtual std::shared_ptr<QPDFObject> shallowCopy();
virtual std::string unparse();
virtual JSON getJSON(int json_version);
virtual QPDFObject::object_type_e getTypeCode() const;
@@ -15,6 +16,7 @@ class QPDF_Integer: public QPDFObject
long long getVal() const;
private:
+ QPDF_Integer(long long val);
long long val;
};