aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDFMatrix.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/qpdf/QPDFMatrix.hh b/include/qpdf/QPDFMatrix.hh
index 9448fb99..1afc15a2 100644
--- a/include/qpdf/QPDFMatrix.hh
+++ b/include/qpdf/QPDFMatrix.hh
@@ -90,6 +90,16 @@ class QPDFMatrix
QPDFObjectHandle::Rectangle transformRectangle(
QPDFObjectHandle::Rectangle r);
+ // operator== tests for exact equality, not considering deltas for
+ // floating point.
+ QPDF_DLL
+ bool operator==(QPDFMatrix const& rhs) const;
+ QPDF_DLL
+ bool operator!=(QPDFMatrix const& rhs) const
+ {
+ return ! operator==(rhs);
+ }
+
double a;
double b;
double c;