]> git.donarmstrong.com Git - lilypond.git/blob - hdr/source.hh
release: 0.0.34
[lilypond.git] / hdr / source.hh
1 //
2 //  source.hh -- part of LilyPond
3 //
4 //  copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
5
6 #ifndef SOURCE_HH
7 #define SOURCE_HH
8
9 class Source 
10 {
11 public:
12     Source();
13     ~Source();
14
15     void add( Source_file* sourcefile_p );
16     Source_file* sourcefile_l( char const* ch_c_l );
17
18 private:
19     IPointerList<Source_file*> sourcefile_p_iplist_;
20 };
21
22
23 // ugh
24 extern Source* source_l_g;
25
26 #endif // SOURCE_HH //