]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/breathing-sign.hh
* lily/include/debug.hh: deprecate.
[lilypond.git] / lily / include / breathing-sign.hh
index 6e861a905c06f46a8b71884df912d9ebfcb7ac09..96a99de9922583b277caa71567124167c40efac4 100644 (file)
 #ifndef BREATHING_SIGN_HH
 #define BREATHING_SIGN_HH
 
-#include "item.hh"
-#include "staff-symbol-referencer.hh"
-#include "parray.hh"
+#include "lily-guile.hh"
 
-class Breathing_sign : public Item, public Staff_symbol_referencer {
+/*
+  breathing sign (apostrophe within staff, not the comma above staff
+  type)
+*/
+class Breathing_sign
+{
 public:
-  VIRTUAL_COPY_CONS(Score_element);
-  Breathing_sign ();
-
-  void set_vertical_position (Direction);
-  void set_direction (Direction d ) { dir_ =  d; }
-  Direction get_direction () const { return dir_; }
-
-
-protected:
-  virtual void do_post_processing ();
-  virtual Molecule* do_brew_molecule_p () const;
-
-private:
-  Direction dir_;
+  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
+  DECLARE_SCHEME_CALLBACK (offset_callback, (SCM element, SCM axis));
+  
+  static bool has_interface (Grob*);
 };
 
 #endif // BREATHING_SIGN_HH