]> git.donarmstrong.com Git - lilypond.git/commitdiff
remove file.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 16 Feb 2006 12:20:15 +0000 (12:20 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 16 Feb 2006 12:20:15 +0000 (12:20 +0000)
ChangeLog
flower/include/file-storage.hh [deleted file]
flower/include/virtual-methods.hh

index 27ccc1f260272b65ad16dbff1d39306a2467fc0e..154c294cc3797e10a8d8fee7430a85a4a86dce88 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-02-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * flower/include/file-storage.hh: remove file.
+
        * lily/include/midi-item.hh (class Midi_track): idem.
 
        * lily/include/source.hh (class Sources): idem.
diff --git a/flower/include/file-storage.hh b/flower/include/file-storage.hh
deleted file mode 100644 (file)
index f13cc47..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
-  file-storage.hh -- declare File_storage, Mapped_file_storage, Simple_file_storage
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
-*/
-
-#ifndef FILE_STORAGE_HH
-#define FILE_STORAGE_HH
-
-#include "flower-proto.hh"
-
-/**
-   store a file in-memory.
-*/
-class File_storage
-{
-public:
-  virtual char const *c_str () const = 0;
-  virtual int length () const = 0;
-  virtual ~File_storage (){}
-};
-
-#endif // FILE_STORAGE_HH
index 67dabc91d1bedae2fdf69c123095b6d65431b4ac..bf28b66737510b205b05074dc891d5cf353c0333 100644 (file)
@@ -17,13 +17,17 @@ using namespace std;
 char const *
 demangle_classname (type_info const &);
 
-/* Virtual copy constructor.  Make up for C++'s lack of a standard
-   factory or clone () function.  Uses a typeof hack.  Usage:
+/*
+
+Virtual copy constructor.  Make up for C++'s lack of a standard
+factory or clone () function.  Usage:
 
-   class Foo : Baseclass
-   {
-   VIRTUAL_COPY_CONSTRUCTOR (Baseclass, Foo);
-   }; */
+class Foo : Baseclass
+{
+VIRTUAL_COPY_CONSTRUCTOR (Baseclass, Foo);
+};
+
+*/
 
 #define DECLARE_CLASSNAME(name) \
   virtual const char *class_name () const {    \