aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_Real.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/QPDF_Real.hh')
-rw-r--r--libqpdf/qpdf/QPDF_Real.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/qpdf/QPDF_Real.hh b/libqpdf/qpdf/QPDF_Real.hh
index dc0f3ff8..2e5bfa02 100644
--- a/libqpdf/qpdf/QPDF_Real.hh
+++ b/libqpdf/qpdf/QPDF_Real.hh
@@ -7,10 +7,10 @@ class QPDF_Real: public QPDFValue
{
public:
virtual ~QPDF_Real() = default;
- static std::shared_ptr<QPDFObject> create(std::string const& val);
- static std::shared_ptr<QPDFObject>
+ static std::shared_ptr<QPDFValueProxy> create(std::string const& val);
+ static std::shared_ptr<QPDFValueProxy>
create(double value, int decimal_places, bool trim_trailing_zeroes);
- virtual std::shared_ptr<QPDFObject> shallowCopy();
+ virtual std::shared_ptr<QPDFValueProxy> shallowCopy();
virtual std::string unparse();
virtual JSON getJSON(int json_version);
std::string getVal();