Important alert: (current site time 7/15/2013 5:36:50 PM EDT)
 

VB icon

Alternative to the TRACE macro

Email
Submitted on: 10/23/1999
By: Found on the World Wide Web 
Level: Intermediate
User Rating: By 2 Users
Compatibility: C++ (general)
Views: 15271
 
     If you create the following pre-processor macro and then use this in place of a TRACE then the output is such that if you double click on the line in the output window it takes you to the line of code where the INFO statement is. It is great for navigating code quickly while debugging. Colin Mackay colin.angus.mackay@dial.pipex.com
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
//**************************************
// Name: Alternative to the TRACE macro
// Description:If you create the following pre-processor macro and then use this in place of a TRACE then the output is such that if you 
double click on the line in the output window it takes you to the line of 
code where the INFO statement is. It is great for navigating code quickly 
while debugging.
Colin Mackay colin.angus.mackay@dial.pipex.com
// By: Found on the World Wide Web
//**************************************

#ifdef _DEBUG
#define INFO ::AfxTrace("%s(%i): ",__FILE__,__LINE__); ::AfxTrace
#else
#define INFO ((void)0)
#endif


Other 162 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.