[core][doc] Improve template parameter name and add the description.

This commit is contained in:
Adam Wulkiewicz
2014-07-11 02:44:55 +02:00
parent 03a1fbc91b
commit 2a6da93c85

View File

@@ -185,20 +185,22 @@ struct cs_tag<cs::cartesian>
/*!
\brief Meta-function returning coordinate system tag (cs family) of any geometry
\tparam Geometry \tparam_geometry
\ingroup core
*/
template <typename G>
template <typename Geometry>
struct cs_tag
{
typedef typename traits::cs_tag
<
typename geometry::coordinate_system<G>::type
typename geometry::coordinate_system<Geometry>::type
>::type type;
};
/*!
\brief Meta-function to verify if a coordinate system is radian
\tparam CoordinateSystem Any coordinate system.
\ingroup core
*/
template <typename CoordinateSystem>