aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/proj/crs.hpp1
-rw-r--r--include/proj/io.hpp4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/proj/crs.hpp b/include/proj/crs.hpp
index b921f4bb..8c1f9f6f 100644
--- a/include/proj/crs.hpp
+++ b/include/proj/crs.hpp
@@ -1410,6 +1410,7 @@ class PROJ_GCC_DLL DerivedCRSTemplate final : public DerivedCRSTraits::BaseType,
DerivedCRSTemplate(const BaseNNPtr &baseCRSIn,
const operation::ConversionNNPtr &derivingConversionIn,
const CSNNPtr &csIn);
+ // cppcheck-suppress noExplicitConstructor
PROJ_INTERNAL DerivedCRSTemplate(const DerivedCRSTemplate &other);
PROJ_INTERNAL CRSNNPtr _shallowClone() const override;
diff --git a/include/proj/io.hpp b/include/proj/io.hpp
index de8a90fc..bc11c220 100644
--- a/include/proj/io.hpp
+++ b/include/proj/io.hpp
@@ -243,6 +243,10 @@ class PROJ_GCC_DLL WKTFormatter {
PROJ_DLL WKTFormatter &setStrict(bool strict) noexcept;
PROJ_DLL bool isStrict() const noexcept;
+ PROJ_DLL WKTFormatter &
+ setAllowEllipsoidalHeightAsVerticalCRS(bool allow) noexcept;
+ PROJ_DLL bool isAllowedEllipsoidalHeightAsVerticalCRS() const noexcept;
+
PROJ_DLL const std::string &toString() const;
PROJ_PRIVATE :