]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/atom.hh
release: 1.1.24
[lilypond.git] / lily / include / atom.hh
index 774e185d364e959656236d0d8dee96c65cb11d17..22c5d15a0cf4ca32584431c295d5ecbee805468e 100644 (file)
@@ -9,15 +9,21 @@
 #ifndef ATOM_HH
 #define ATOM_HH
 
+#include "protected-scm.hh"
 #include "string.hh"
 #include "box.hh"
 #include "lily-proto.hh"
 
-
 /// a symbol which can be translated, and freely copied
 class Atom {
   Offset off_;
+
+  
 public:
+  Protected_scm lambda_;
+  Score_element * origin_l_;
+
+  // urg, only used as a temp buffer
   String str_;
   String font_;
   Box dim_;
@@ -30,7 +36,9 @@ public:
   void translate_axis (Real r,Axis a);
   /// how big is #this#?
   Box extent() const;
+  Interval extent (Axis)const;
   void print() const;
   bool check_infinity_b () const;
+  bool empty() const;
 };
 #endif