Menu

#203 templated method doc problem

open
nobody
None
5
2004-06-16
2004-06-16
No

If I template a class method on some other class, the
documentation does not reveal this. Thus in the
following, there is no indication in the generated
documentation that the Wrap method is templated on typeT:

class MemoryAttributesC : public DListC<PairC<StringC> > {
public:

template <class typeT>
MemoryAttributesC Wrap(const StringC& attr, const
typeT& Obj);
//: Adds an object to a list of attributes
// Method is templated on object type

};

Cheers,
Bill.

Discussion