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