]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dimension-cache.hh
Remove obsolete file dimension-cache-callback.hh.
[lilypond.git] / lily / include / dimension-cache.hh
1 /*
2   dimension-cache.hh -- declare Dimension_cache
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef DIMENSION_CACHE_HH
10 #define DIMENSION_CACHE_HH
11
12 #include "lily-proto.hh"
13 #include "std-vector.hh"
14 #include "lily-guile.hh"
15
16 /*
17   XY offset/refpoint/extent structure.
18 */
19 class Dimension_cache
20 {
21   Interval *extent_;
22   Real *offset_;
23   Grob *parent_;
24   void init ();
25   void clear ();
26   
27   friend class Grob;
28   
29   Dimension_cache (Dimension_cache const &);
30   ~Dimension_cache ();
31   Dimension_cache ();
32 };
33
34 #endif /* DIMENSION_CACHE_HH */
35