From: fred Date: Wed, 23 Oct 1996 22:23:14 +0000 (+0000) Subject: lilypond-0.0.5 X-Git-Tag: release/1.5.59~7034 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a1759d23a92914dfff99fbf7ef7826cb5edbe2b7;p=lilypond.git lilypond-0.0.5 --- diff --git a/item.cc b/item.cc index 453200627b..96ec8a890a 100644 --- a/item.cc +++ b/item.cc @@ -54,3 +54,8 @@ Item::Item() output = 0; pstaff_ = 0; } +void +Item::print() const +{ + output->print(); +} diff --git a/item.hh b/item.hh index 6a3a9880d7..484822533b 100644 --- a/item.hh +++ b/item.hh @@ -40,6 +40,7 @@ struct Item { */ String TeXstring () const ; Item(); + void print()const; }; /** An item must be part of a Column */ diff --git a/molecule.hh b/molecule.hh index 60a7a05f44..05ec64e3e0 100644 --- a/molecule.hh +++ b/molecule.hh @@ -18,6 +18,7 @@ struct Atom { Box extent() const; Atom(Symbol s); + void print() const; String TeXstring() const; }; @@ -42,6 +43,7 @@ struct Molecule { String TeXstring() const; Molecule(const Molecule&s); + void print() const; private: void operator=(const Molecule&); };