blob: e15d0024145bf4fbab53b253e4c41bc70554fdf7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
cluster.hh
source file of the GNU LilyPond music typesetter
(c) 2002--2007 Juergen Reuter <reuter@ipd.uka.de>
*/
#ifndef CLUSTER_HH
#define CLUSTER_HH
#include "stencil.hh"
#include "grob-interface.hh"
class Cluster
{
public:
DECLARE_SCHEME_CALLBACK (print, (SCM));
DECLARE_SCHEME_CALLBACK (calc_cross_staff, (SCM));
DECLARE_GROB_INTERFACE();
};
#endif // CLUSTER_HH
|