summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2018-12-25 01:29:30 +0100
committerJay Berkenbilt <ejb@ql.org>2019-01-01 05:02:43 +0100
commit5059ec0d35547c0b3328c3089221b7cb3c3ac45d (patch)
tree79c93c72f424ef640f83f80d0c2f2d269cf9e2e3 /libqpdf/qpdf
parentdaeb5a85b6ded478aaac942c439ef5fd6bb8874f (diff)
downloadqpdf-5059ec0d35547c0b3328c3089221b7cb3c3ac45d.tar.zst
Add Matrix class under QPDFObjectHandle
Diffstat (limited to 'libqpdf/qpdf')
-rw-r--r--libqpdf/qpdf/QPDFMatrix.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/libqpdf/qpdf/QPDFMatrix.hh b/libqpdf/qpdf/QPDFMatrix.hh
index dcf8b195..81bc51f1 100644
--- a/libqpdf/qpdf/QPDFMatrix.hh
+++ b/libqpdf/qpdf/QPDFMatrix.hh
@@ -1,6 +1,7 @@
#ifndef QPDFMATRIX_HH
#define QPDFMATRIX_HH
+#include <qpdf/QPDFObjectHandle.hh>
#include <qpdf/DLL.h>
#include <string>
@@ -12,6 +13,8 @@ class QPDFMatrix
QPDF_DLL
QPDFMatrix(double a, double b, double c,
double d, double e, double f);
+ QPDF_DLL
+ QPDFMatrix(QPDFObjectHandle::Matrix const&);
QPDF_DLL
std::string unparse() const;