Reputation: 21
how to view content of object using TotalView? suppose i hav a Reference of a class and i called the function of that class. then how i can view all content of that class using that Reference in Total View debugger. My code is in c++.
Upvotes: 0
Views: 199
Reputation: 729
You just need to double-click on the variable: it will pop-up a window with the contents. Note that you need to have built your application with debug symbols turned on.
Upvotes: 0