diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-11-18 23:47:17 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-11-18 23:47:17 +0100 |
| commit | 360657d16d1974e096d8d3bb61e18fee35598d1a (patch) | |
| tree | e37a7c3437b90715e3695e43c8ff2a3cf1deaf52 /src/iso19111/common.cpp | |
| parent | df339795a8af5487cbff234083a8151c1b3eb181 (diff) | |
| download | PROJ-360657d16d1974e096d8d3bb61e18fee35598d1a.tar.gz PROJ-360657d16d1974e096d8d3bb61e18fee35598d1a.zip | |
createGeodeticDatum(): query and set publicationDate
Diffstat (limited to 'src/iso19111/common.cpp')
| -rw-r--r-- | src/iso19111/common.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/iso19111/common.cpp b/src/iso19111/common.cpp index d7960ee9..97900bda 100644 --- a/src/iso19111/common.cpp +++ b/src/iso19111/common.cpp @@ -552,6 +552,15 @@ DateTime::DateTime(const DateTime &other) // --------------------------------------------------------------------------- //! @cond Doxygen_Suppress +DateTime &DateTime::operator=(const DateTime &other) { + d->str_ = other.d->str_; + return *this; +} +//! @endcond + +// --------------------------------------------------------------------------- + +//! @cond Doxygen_Suppress DateTime::~DateTime() = default; //! @endcond |
