]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
Parser: Remove all trailing whitespace (to make diffs easier in the future)
[lilypond.git] / lily / include / bar.hh
index 663b233e8918325257dcdb2777de8862b3d73bb2..8fbe6797df51b6e88e5a48b78612150da632b830 100644 (file)
@@ -1,28 +1,41 @@
 /*
-  bar.hh -- part of GNU LilyPond
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1996--2000 Han-Wen Nienhuys
+  Copyright (C) 1996--2010 Han-Wen Nienhuys
+
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef BAR_HH
 #define BAR_HH
 
-#include "lily-guile.hh"
 #include "lily-proto.hh"
+#include "grob-interface.hh"
 
 /**
-  A vertical bar.
- */
+   A vertical bar.
+*/
 class Bar
 {
 public:
-  static bool has_interface (Score_element*);
-  static void set_interface (Score_element*);
-  static Molecule compound_barline (Score_element*, String, Real height) ;
-  static Molecule simple_barline (Score_element*, Real wid, Real height) ;      
-  DECLARE_SCHEME_CALLBACK(get_staff_bar_size, (SCM ));
-  DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM ));
-  DECLARE_SCHEME_CALLBACK(before_line_breaking, (SCM ));
+  DECLARE_GROB_INTERFACE();
+
+  static Stencil compound_barline (Grob *, string, Real height);
+  static Stencil simple_barline (Grob *, Real wid, Real height);
+  DECLARE_SCHEME_CALLBACK (get_staff_bar_size, (SCM));
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
+  DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
 };
 #endif // BAR_HH