|
I have a custom C++ container that utilizes templates. I need to it to reveal all it's container data in the debugger window, but I just can't figure it out. I also need it to display it's other members too, not just the array.
The container is like this:
//=============================================
namespace foo
{
template<T* > class bar {
...
T* mptrArray;
size_t msize;
};
} //end namespace
I have tried following this example,
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=267368&SiteID=1
but with no success. Boris Jabes obviously does not want to answer questions.
Chris J.
|