I am debugging a Visual C++ project that uses Rogue Wave a lot. I would like to see content of RW containers easily, i.e. i want to see list elements instead of this:

What are my options? Can autoexp.dat do this?

link|improve this question

52% accept rate
feedback

1 Answer

autoexp.dat can do it but it's quite difficult.

You can also write your own debugger extensions to visualize them, put them in a DLL and refer to it in autoexp.dat. But again, this is quite difficult.

First see in autoexp.dat how the preview is defined for the standard STL containers (vector, list, map, string, ...), then try to mimic this for your own RWTIsvSlist class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.