00001 #ifndef DDD_DDTiming_h 00002 #define DDD_DDTiming_h 00003 00004 // turn on/off timing here 00005 #define DDTIMING_ON 00006 00007 #ifdef DDTIMING_ON 00008 // assume that we want timing turned on... 00009 // in theory this could have some functionality. Right now I'm thinking 00010 // that including this file will turn on timing, that is it's only job. 00011 // if it s defined above, then my code will check ifdef DDTIMING_ON 00012 // and do the timing and dumping... So, timing is turned on/off at 00013 // at compile time. 00014 #endif 00015 00016 #endif