projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add /usr/local/lib/faustine and /usr/lib/faustine to preprocessor import path.
[Faustine.git]
/
interpretor
/
preprocessor
/
faust-0.9.47mr3
/
compiler
/
errors
/
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