RE: [Doxygen-users] template functions again
Brought to you by:
dimitri
|
From: Kris T. <kri...@cs...> - 2001-08-28 19:39:04
|
>
> When I generate the documentation (version 1.2.9.1), my class will be
> documented was it should be. But I'm not able to discover the
> documentation
> for my global template function.
> Am I doing anything wrong?
With 1.2.9.1 and 1.2.8.1 they would end up in the section 'namespace
members' if they're in a namespace, or 'file members' if they're not.
I used
//! Threshold a sequence from above and below
/*! bla
*/
template <typename forw_iterT, typename elemT>
inline void
threshold_upper_lower(forw_iterT begin, forw_iterT end,
const elemT new_min, const elemT new_max)
{
// code
}
|