]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/input.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / input.hh
1 /*
2   input.hh -- declare Input
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef INPUT_HH
10 #define INPUT_HH
11
12 #include "flower-proto.hh"
13 #include "std-string.hh"
14
15 /**
16    Base class for anything that records its poisition in the parse file.
17 */
18 class Input
19 {
20   char const *start_;
21   char const *end_;
22   Source_file *source_file_;
23
24 public:
25   Source_file *get_source_file () const;
26   char const *start () const;
27   char const *end () const;
28
29   void set (Source_file *, char const *, char const *);
30   void warning (string) const; // should use member func?
31   void non_fatal_error (string) const;
32   void error (string) const;
33   void message (string) const;
34   void set_spot (Input const &);
35   void step_forward ();
36   void set_location (Input const &, Input const &);
37   Input spot () const;
38   string location_string () const;
39   string line_number_string () const;
40   string file_string ()const;
41
42   int line_number ()const;
43   int column_number ()const;
44   int end_line_number ()const;
45   int end_column_number ()const;
46
47   void get_counts (int *line, int *char_count, int *col) const;
48
49   Input (Input const &i);
50   Input ();
51 };
52
53 #endif // INPUT_HH