lilypond-1.3.24
[lilypond.git] / hdr / source.hh
blob6c79b75a996de0df81fbe99ab3acfa4636cd6d31
1 //
2 // source.hh -- part of LilyPond
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
6 #ifndef SOURCE_HH
7 #define SOURCE_HH
9 class Source
11 public:
12 Source();
13 ~Source();
15 void add( Source_file* sourcefile_p );
16 Source_file* sourcefile_l( char const* ch_c_l );
18 private:
19 IPointerList<Source_file*> sourcefile_p_iplist_;
23 // ugh
24 extern Source* source_l_g;
26 #endif // SOURCE_HH //