]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/input.hh
*** empty log message ***
[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;
31   void programming_error (string) const;
32   void non_fatal_error (string) const;
33   void error (string) const;
34   void message (string) const;
35   void set_spot (Input const &);
36   void step_forward ();
37   void set_location (Input const &, Input const &);
38
39   Input spot () const;
40
41   string location_string () const;
42   string line_number_string () const;
43   string file_string ()const;
44
45   int line_number ()const;
46   int column_number ()const;
47   int end_line_number ()const;
48   int end_column_number ()const;
49
50   void get_counts (int *line, int *char_count, int *col) const;
51
52   Input (Input const &i);
53   Input ();
54 };
55
56 #endif // INPUT_HH