From: eap Date: Thu, 23 Jun 2011 12:04:34 +0000 (+0000) Subject: 0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups X-Git-Tag: V6_4_0a1~202 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e92088a57633940a4c1916a5d6d40594baa1b5a3;p=modules%2Fsmesh.git 0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups - unsigned long GetMTime(); + unsigned long GetMTime() const; --- diff --git a/src/SMDS/SMDS_Mesh.cxx b/src/SMDS/SMDS_Mesh.cxx index aebefcb03..b27ff358a 100644 --- a/src/SMDS/SMDS_Mesh.cxx +++ b/src/SMDS/SMDS_Mesh.cxx @@ -4237,7 +4237,7 @@ void SMDS_Mesh::Modified() } //! get last modification timeStamp -unsigned long SMDS_Mesh::GetMTime() +unsigned long SMDS_Mesh::GetMTime() const { return this->myModifTime; } diff --git a/src/SMDS/SMDS_Mesh.hxx b/src/SMDS/SMDS_Mesh.hxx index 3d233f013..4a26c246a 100644 --- a/src/SMDS/SMDS_Mesh.hxx +++ b/src/SMDS/SMDS_Mesh.hxx @@ -592,7 +592,7 @@ public: inline void setMyModified() { this->myModified = true; } void Modified(); - unsigned long GetMTime(); + unsigned long GetMTime() const; bool isCompacted(); protected: