blob: 5513d2524f623c54e7cf266c37392dbe5b44d3cd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
warn.cc -- implement warning and error messages. Needs cleanup.
source file of the GNU LilyPond music typesetter
(c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
*/
#include "proto.hh"
#include "debug.hh"
#include "my-lily-lexer.hh"
#include "moment.hh"
#include "timing-translator.hh"
#include "source-file.hh"
#include "source.hh"
#include "main.hh"
#include "input.hh"
ostream &warnout (cerr);
void
progress_indication (String s)
{
cerr << s << flush;
}
|