]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/PropertyInterface.hxx
Salome HOME
[EDF27816] Management of double foreach and management of proxyfile lifecycle
[modules/yacs.git] / src / engine / PropertyInterface.hxx
index 7c53eccf04bcc92dc1c48fe02ff09f320973d8c6..eab4058319ffcfd29ef7ebb49447b06ce3b2ccf4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -36,7 +36,7 @@ namespace YACS
 
       virtual void setProperty(const std::string& name,const std::string& value);
       virtual std::string getProperty(const std::string& name);
-      std::map<std::string,std::string> getProperties() { return _propertyMap; };
+      std::map<std::string,std::string> getProperties() const { return _propertyMap; };
       virtual void setProperties(std::map<std::string,std::string> properties);
     protected:
       std::map<std::string,std::string> _propertyMap;