repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-0.0.4
[lilypond.git]
/
debug.hh
blob
ca805df011aca50d80279d6d138f9a0fec355989
1
#ifndef DEBUG_HH
2
#define DEBUG_HH
3
#include <assert.h>
4
#include <iostream.h>
5
#include
"dstream.hh"
6
7
8
9
#define WARN warnout <<
"warning: "
<<__FUNCTION__ <<
"(): "
10
extern
ostream
&
warnout
;
11
extern
ostream
*
mlog
;
12
extern
Dstream monitor
;
// monitor
13
14
#define mtor monitor.identify_as(__PRETTY_FUNCTION__)
15
16
void
error
(
String s
);
17
void
warning
(
String s
);
18
19
#endif