This commit is contained in:
Andreas Fabri 2017-11-29 14:54:04 +00:00
parent 4d379a990d
commit 3ad77e65a7
1 changed files with 12 additions and 0 deletions

View File

@ -51,6 +51,9 @@ struct dynamic_vertex_property_t
{
/// \param default the default value of the property
dynamic_vertex_property_t(const T& default = T());
/// returns the default value
const T& default() const;
};
/// \ingroup PkgBGLPropertiesDynamic
@ -61,6 +64,9 @@ struct dynamic_halfedge_property_t
{
/// \param default the default value of the property
dynamic_halfedge_property_t(const T& default = T());
/// returns the default value
const T& default() const;
};
/// \ingroup PkgBGLPropertiesDynamic
@ -71,6 +77,9 @@ struct dynamic_edge_property_t
{
/// \param default the default value of the property
dynamic_edge_property_t(const T& default = T());
/// returns the default value
const T& default() const;
};
/// \ingroup PkgBGLPropertiesDynamic
@ -81,6 +90,9 @@ struct dynamic_face_property_t
{
/// \param default the default value of the property
dynamic_face_property_t(const T& default = T());
/// returns the default value
const T& default() const;
};
/// @}