accord
Whole Tomato Software
United Kingdom
3287 Posts |
Posted - Aug 19 2006 : 10:31:34 PM
|
VS2005, VAX1532, C++
The great news is that template class declarations and tempalte functions are now listed in Alt+M's listbox. But the text here is somewhat dirty.
In a header file I have:
class cNumberAdder : public cAdder { public: [...] template <class T> void CreateEditBox(); }
If I press Alt+M here, the listbox item will be
cNumberAdder.template-100.T> void CreateBox()
for this function.
(In VAX 1530 this template function wasn't listed at all.)
...and this template class declaration:
template <class T> class cTreeNodeAdderTemplate : public cTreeNodeAdder {
is listed as
template-6.T> class cTreeNodeAdderTemplate
|
|