cgal/Triangulation_3/doc/Triangulation_3/Concepts/TriangulationVertexBaseWith...

48 lines
796 B
C++

/*!
\ingroup PkgTriangulation3Concepts
\cgalConcept
A type model of this concept can be used as vertex base by a triangulation
and provides an additional information storage.
\cgalRefines{TriangulationVertexBase_3}
\cgalHasModelsBegin
\cgalHasModels{CGAL::Triangulation_vertex_base_with_info_3}
\cgalHasModelsEnd
*/
class TriangulationVertexBaseWithInfo_3 {
public:
/// \name Types
/// @{
/*!
A type which is `DefaultConstructible` and `Assignable`.
*/
typedef unspecified_type Info;
/// @}
/// \name Access Functions
/// @{
/*!
Returns a const reference to the object of type `Info` stored in the
vertex.
*/
const Info& info() const;
/*!
Returns a reference to the object of type `Info` stored in the vertex.
*/
Info& info();
/// @}
}; /* end TriangulationVertexBaseWithInfo_3 */