From: fred Date: Sun, 24 Mar 2002 19:29:48 +0000 (+0000) Subject: lilypond-0.0.15 X-Git-Tag: release/1.5.59~5499 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bdd27df1836020d870eb4a676f44ac81ffba3abd;p=lilypond.git lilypond-0.0.15 --- diff --git a/objects/Makefile b/objects/Makefile deleted file mode 100644 index 585e1df181..0000000000 --- a/objects/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -dist: - ln Makefile $(DDIR)/objects/ - -clean: - rm -f *.o diff --git a/src/accidental.cc b/src/accidental.cc deleted file mode 100644 index eb3ca7c7e3..0000000000 --- a/src/accidental.cc +++ /dev/null @@ -1,32 +0,0 @@ -#include "accidental.hh" -#include "debug.hh" -#include "molecule.hh" -#include "paper.hh" -#include "lookup.hh" - -Accidental::Accidental(int t, int p) -{ - type = t; - pos = p; -} - -void -Accidental::preprocess() -{ - brew_molecole(); -} - -void -Accidental::brew_molecole() -{ - Symbol s =paper()->lookup_->accidental(type); - output = new Molecule(Atom(s)); - output->translate(Offset(0, pos * paper()->interline()/2)); -} - -void -Accidental::print()const -{ - mtor << "Accidental "<