ADD: added cost do serialize function in Identifier

This commit is contained in:
Henry Winkel
2023-03-31 11:06:25 +02:00
parent dd036d9d90
commit f83fabd343
2 changed files with 7 additions and 9 deletions

View File

@@ -62,7 +62,7 @@ namespace SimCore {
* @brief returns the serilaized string of the ID
* @brief string
*/
std::string serialize();
std::string serialize() const;
std::string getUUID() const;
@@ -76,6 +76,6 @@ namespace SimCore {
/// the number of the parent, all ID from an external source the parent is the same
std::uint32_t parent_ = 0;
std::string uuid_ = "";
std::string uuid_;
};
}