]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.44
authorfred <fred>
Sun, 24 Mar 2002 19:36:17 +0000 (19:36 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:36:17 +0000 (19:36 +0000)
lib/include/source.hh

index 6c79b75a996de0df81fbe99ab3acfa4636cd6d31..05890f1310136adc2bcea635a8f9816a59ff6484 100644 (file)
@@ -5,22 +5,24 @@
 
 #ifndef SOURCE_HH
 #define SOURCE_HH
-
-class Source 
+#include "source-file.hh"
+#include "plist.hh"
+#include "path.hh"
+class Sources 
 {
 public:
-    Source();
-    ~Source();
-
-    void add( Source_file* sourcefile_p );
+    Source_file * get_file_l( String &filename );
     Source_file* sourcefile_l( char const* ch_c_l );
-
+    void set_path(File_path*p_C);
+    Sources();
+    void set_binary(bool);
 private:
+    const File_path * path_C_;
+    void add( Source_file* sourcefile_p );
     IPointerList<Source_file*> sourcefile_p_iplist_;
+    bool binary_b_ ;
 };
 
 
-// ugh
-extern Source* source_l_g;
 
 #endif // SOURCE_HH //