]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/source.hh
* lily/spanner.cc (find_broken_piece):
[lilypond.git] / lily / include / source.hh
index 24ff6ad077938106b20801ee606d716178eb6711..09c6b0553f4e19d23c196a0de9f763341600c220 100644 (file)
@@ -6,21 +6,22 @@
 
 #ifndef SOURCE_HH
 #define SOURCE_HH
-#include "cons.hh"
+
 #include "flower-proto.hh"
+#include "std-vector.hh"
 
 /*   A set of sourcefiles.  */
 class Sources
 {
   Sources (Sources const &) {}
-  Cons<Source_file> *sourcefile_list_;
+  vector<Source_file*> sourcefiles_;
   bool is_binary_;
 
 public:
   Sources ();
   ~Sources ();
 
-  Source_file *get_file (String &file_name);
+  Source_file *get_file (string *file_name);
   Source_file *get_sourcefile (char const *);
   void add (Source_file *sourcefile);
   void set_path (File_path *);