Is there a macro that does it? Which DTE objects to use?
|
|
|
|
|
|
|
I don't know what DTE functions to use, but you could very simply record a macro that could pretty much do it:
Now just run this over and over (ctrl - shift P repeatedly) until you reach the end of the file. If you have namespaces, then change 4. to:
This kind of thing can be infinitely modified to suit your codebase |
||||
|
|
|
Put this at the top of the file:
then insert DEBUG_BREAK in the beginning of every function, like this:
When you no longer want the debug breaks, comment the line
at the top of the file. |
||
|
|
|
Here's a quick implementation of 1800 INFORMATION's idea:
|
||
|
|
|
Like Constantin's method... This seems like windbg territory. Since you have the cpp, (even if you didn't you could script something to get by), it should be no problem to use logger part of the debugging tools for windows... it's a very handy tool, shame so few people use it. logger debug's C/COM/C++ easily, with rich symbolic info, hooks/profiling/flexible instrumentation; |
||
|
|
|
Here's how something similar could be achieved in WinDbg:
This puts breakpoint in every method of class (or namespace) I'm still looking for anything close to this functionality in Visual Studio. |
||
|
|
