diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2018-12-13 12:24:05 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2018-12-13 12:24:57 +0100 |
| commit | fdbbe7da6de1a464172a644f92753ea435019b78 (patch) | |
| tree | d0d2648d64f6ff034bc43726edbc68327d8a0463 /include | |
| parent | be7adb85aa92dd601a92313d5b725270596b1a95 (diff) | |
| download | PROJ-fdbbe7da6de1a464172a644f92753ea435019b78.tar.gz PROJ-fdbbe7da6de1a464172a644f92753ea435019b78.zip | |
SingleOperation::_isEquivalentTo(): make it work with missing parameters
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/coordinateoperation.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/proj/coordinateoperation.hpp b/include/proj/coordinateoperation.hpp index 4ab25d86..5f0f834f 100644 --- a/include/proj/coordinateoperation.hpp +++ b/include/proj/coordinateoperation.hpp @@ -596,6 +596,10 @@ class PROJ_GCC_DLL SingleOperation : virtual public CoordinateOperation { PROJ_INTERNAL bool exportToPROJStringGeneric(io::PROJStringFormatter *formatter) const; + PROJ_INTERNAL bool _isEquivalentTo(const util::IComparable *other, + util::IComparable::Criterion criterion, + bool inOtherDirection) const; + private: PROJ_OPAQUE_PRIVATE_DATA SingleOperation &operator=(const SingleOperation &other) = delete; |
