cgal/Algebraic_foundations/doc/Algebraic_foundations/Concepts/FromIntConstructible.h

31 lines
421 B
C++

/*!
\ingroup PkgAlgebraicFoundationsAlgebraicStructuresConcepts
\cgalConcept
A model of the concept `FromIntConstructible` is required
to be constructible from int.
\cgalHasModelsBegin
\cgalHasModels{int}
\cgalHasModels{long}
\cgalHasModels{double}
\cgalHasModelsEnd
*/
class FromIntConstructible {
public:
/// \name Creation
/// @{
/*!
*/
FromIntConstructible(int& i);
/// @}
}; /* end FromIntConstructible */