Part: Geometry extension const correctness

This commit is contained in:
Abdullah Tahiri
2019-02-10 15:28:55 +01:00
committed by wmayer
parent c670ef9793
commit 41ad1fe0a1

View File

@@ -39,7 +39,7 @@ namespace Part {
virtual ~GeometryDefaultExtension() = default;
inline void setValue(const T& val) {value = val;};
inline const T &getValue() {return value;};
inline const T &getValue() const {return value;};
// Persistence implementer ---------------------
virtual unsigned int getMemSize(void) const;