move documentation of PropertyManager factory functions to PropertyManager Doxygen page

This commit is contained in:
Janis Born
2016-05-23 15:04:28 +02:00
parent d1b3509ca6
commit bb024a6846

View File

@@ -428,7 +428,7 @@ class PropertyManager {
std::string name_; std::string name_;
}; };
/** /** \relates PropertyManager
* Creates a new property whose lifecycle is managed by the returned * Creates a new property whose lifecycle is managed by the returned
* PropertyManager. * PropertyManager.
* *
@@ -440,7 +440,7 @@ PropertyManager<PROPTYPE, MeshT> makePropertyManagerFromNew(MeshT &mesh, const c
return PropertyManager<PROPTYPE, MeshT>(mesh, propname, false); return PropertyManager<PROPTYPE, MeshT>(mesh, propname, false);
} }
/** /** \relates PropertyManager
* Creates a non-owning wrapper for an existing mesh property (no lifecycle * Creates a non-owning wrapper for an existing mesh property (no lifecycle
* management). * management).
* *
@@ -455,7 +455,7 @@ PropertyManager<PROPTYPE, MeshT> makePropertyManagerFromExisting(MeshT &mesh, co
return PropertyManager<PROPTYPE, MeshT>(mesh, propname, true); return PropertyManager<PROPTYPE, MeshT>(mesh, propname, true);
} }
/** /** \relates PropertyManager
* Creates a non-owning wrapper for a mesh property (no lifecycle management). * Creates a non-owning wrapper for a mesh property (no lifecycle management).
* If the given property does not exist, it is created. * If the given property does not exist, it is created.
* *