mirror of https://github.com/CGAL/cgal
21 lines
327 B
C++
21 lines
327 B
C++
|
|
namespace CGAL {
|
|
|
|
/*!
|
|
\ingroup PkgModularArithmetic
|
|
|
|
An instance of `Modular_traits` is a model of `ModularTraits`,
|
|
where <span class="textsc">T</span> is the associated type.
|
|
|
|
\models ::ModularTraits
|
|
|
|
*/
|
|
template< typename T >
|
|
class Modular_traits {
|
|
public:
|
|
|
|
/// @}
|
|
|
|
}; /* end Modular_traits */
|
|
} /* end namespace CGAL */
|