]> git.donarmstrong.com Git - lilypond.git/blobdiff - src/bar.cc
release: 0.0.22
[lilypond.git] / src / bar.cc
index bb66f2b77717ab32606f9ef778822842e1ba1df4..edfd6a8e3c40d609ec294a6deea5efa916848224 100644 (file)
@@ -9,10 +9,12 @@ Bar::Bar( String t)
 {
     type = t;
 }
-void
-Bar::preprocess()
+Molecule*
+Bar::brew_molecule()const
 {    
-    Symbol s = paper()->lookup_->bar(type);
-    output = new Molecule(Atom(s));
+    Symbol s = paper()->lookup_p_->bar(type);
+Molecule*    output = new Molecule(Atom(s));
+return output;
+    
 }