]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/accidental-interface.hh
* flower/include/axis.hh: rename from axes.hh
[lilypond.git] / lily / include / accidental-interface.hh
index e906f9fcb45cb88787da161891168f6a41a58553..835762d320a6921b0d40355198f9da0cdd7652b9 100644 (file)
@@ -1,27 +1,27 @@
-/*   
-accidental-interface.hh -- declare  Accidental_interface
+/*
+  accidental-interface.hh -- declare  Accidental_interface
 
-source file of the GNU LilyPond music typesetter
+  source file of the GNU LilyPond music typesetter
 
-(c) 2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-
- */
+  (c) 2002--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
 
 #ifndef ACCIDENTAL_INTERFACE_HH
 #define ACCIDENTAL_INTERFACE_HH
 
-#include "grob.hh"
+#include "box.hh"
+#include "lily-guile.hh"
+#include "lily-proto.hh"
 
 class Accidental_interface
 {
 public:
-  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
-  DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));  
-  static bool has_interface (Grob*);
-  
-  static String get_fontcharname(String style, int alteration);
-  static Array<Box> Accidental_interface::accurate_boxes (Grob *me,Grob**common);
-};
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
+  DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
+  static bool has_interface (Grob *);
 
+  static String get_fontcharname (String style, int alteration);
+  static Array<Box> Accidental_interface::accurate_boxes (Grob *me, Grob **common);
+};
 
 #endif