]> git.donarmstrong.com Git - lilypond.git/blobdiff - lib/include/source.hh
patch::: 1.1.31.jcn1: Re: LilyPond 1.1.30
[lilypond.git] / lib / include / source.hh
index 96fb10193ea6cfa02f756bd17c65d5edbed794d5..395a9d8bb46602c215e39c75a72f5213a537897a 100644 (file)
@@ -1,26 +1,29 @@
 //
 //  source.hh -- part of LilyPond
 //
-//  copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
+//  copyright 1997 Jan Nieuwenhuizen <janneke@gnu.org>
 
 #ifndef SOURCE_HH
 #define SOURCE_HH
-#include "plist.hh"
+
 #include "proto.hh"
+#include "plist.hh"
+
 class Sources 
 {
 public:
-    Source_file * get_file_l( String &filename );
-    Source_file* sourcefile_l( char const* ch_C );
-    void set_path(File_path*p_C);
-    Sources();
-    void set_binary(bool);
-    ~Sources();
+  Sources ();
+
+  Source_file * get_file_l (String &filename );
+  Source_file* sourcefile_l (char const* ch_C );
+  void add (Source_file* sourcefile_p );
+  void set_path (File_path*p_C);
+  void set_binary (bool);
+
 private:
-    const File_path * path_C_;
-    void add( Source_file* sourcefile_p );
-    Pointer_list<Source_file*> sourcefile_p_list_;
-    bool binary_b_ ;
+  const File_path * path_C_;
+  Pointer_list<Source_file*> sourcefile_p_list_;
+  bool binary_b_ ;
 };