X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lib%2Finclude%2Fsource.hh;h=395a9d8bb46602c215e39c75a72f5213a537897a;hb=0c8900ebb927c893d684b2eecf8e46a2e3701d8a;hp=96fb10193ea6cfa02f756bd17c65d5edbed794d5;hpb=1a66290a98e7de8d6d41485b5b71a9f7e1fe35c7;p=lilypond.git diff --git a/lib/include/source.hh b/lib/include/source.hh index 96fb10193e..395a9d8bb4 100644 --- a/lib/include/source.hh +++ b/lib/include/source.hh @@ -1,26 +1,29 @@ // // source.hh -- part of LilyPond // -// copyright 1997 Jan Nieuwenhuizen +// copyright 1997 Jan Nieuwenhuizen #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 sourcefile_p_list_; - bool binary_b_ ; + const File_path * path_C_; + Pointer_list sourcefile_p_list_; + bool binary_b_ ; };