]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.5
authorfred <fred>
Wed, 23 Oct 1996 22:23:14 +0000 (22:23 +0000)
committerfred <fred>
Wed, 23 Oct 1996 22:23:14 +0000 (22:23 +0000)
item.cc
item.hh
molecule.hh

diff --git a/item.cc b/item.cc
index 453200627b0e5694a8dc3d3c59912c52829f1158..96ec8a890a4c7ed742d2c6b23bb50c612f992975 100644 (file)
--- 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 6a3a9880d77418767c83f0e2ceef2ea3c6d52ea4..484822533bceddf0f1e4f3fd4b177276e11a71f5 100644 (file)
--- 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
 */
index 60a7a05f44ed8664a6458a0f1eaf6131af575b0b..05ec64e3e09b13843ee2b837db373dba80c31b86 100644 (file)
@@ -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&);
 };