]> git.donarmstrong.com Git - lilypond.git/blob - lib/include/source.hh
release: 0.0.65
[lilypond.git] / lib / include / 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 #include "plist.hh"
9 class Sources 
10 {
11 public:
12     Source_file * get_file_l( String &filename );
13     Source_file* sourcefile_l( char const* ch_C );
14     void set_path(File_path*p_C);
15     Sources();
16     void set_binary(bool);
17 private:
18     const File_path * path_C_;
19     void add( Source_file* sourcefile_p );
20     Pointer_list<Source_file*> sourcefile_p_list_;
21     bool binary_b_ ;
22 };
23
24
25
26 #endif // SOURCE_HH //