Merge branch 'newtree'
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / compiler / headers / timing.hh
1 #ifndef __TIMING__
2 #define __TIMING__
3
4
5 // use startTiming("foo") and endTiming("foo") to measure the execution time of a portion of code
6 // edit timing.cpp de unactivate the code
7
8 void startTiming (const char* msg);
9
10 void endTiming (const char* msg);
11
12 #endif
13
14