Merge branch 'propertymanager-factory-doxygen' into 'master'

move documentation of PropertyManager factory functions to PropertyManager Doxygen page



See merge request !65
This commit is contained in:
Jan Möbius
2016-05-24 08:10:57 +02:00

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.
* *