[Doc] Improve documentation PropertyContainer

This commit is contained in:
Pieter Hijma
2025-04-11 20:49:56 +02:00
committed by Benjamin Nauck
parent 8956c56235
commit 519b78d775
6 changed files with 489 additions and 116 deletions

View File

@@ -39,11 +39,14 @@ class BaseExport Persistence: public BaseClass
TYPESYSTEM_HEADER();
public:
/** This method is used to get the size of objects
* It is not meant to have the exact size, it is more or less an estimation
* which runs fast! Is it two bytes or a GB?
/**
* @brief Get the size of objects.
*
* It is not meant to have the exact size, it is more or less a fast
* estimation to tell whether it is two bytes or a GB.
*/
virtual unsigned int getMemSize() const = 0;
/** This method is used to save properties to an XML document.
* A good example you'll find in PropertyStandard.cpp, e.g. the vector:
* \code