]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/slur.hh
patch::: 1.1.20.jcn1: patsje
[lilypond.git] / lily / include / slur.hh
1 /*
2   slur.hh -- part of GNU LilyPond
3
4   (c) 1996--1998 Han-Wen Nienhuys
5 */
6
7 #ifndef SLUR_HH
8 #define SLUR_HH
9
10 #include "directional-spanner.hh"
11 #include "lily-proto.hh"
12 #include "parray.hh"
13 #include "bow.hh"
14
15 /**
16   A #Bow# which tries to drape itself around the stems too.
17  */
18 class Slur : public Bow
19 {
20 public:
21   Slur ();
22   VIRTUAL_COPY_CONS(Score_element);
23
24   void add_column (Note_column*);
25   
26   Link_array<Note_column> encompass_arr_;
27
28 protected:
29   virtual Array<Offset> get_encompass_offset_arr () const;
30
31   virtual void set_default_dir ();
32   virtual void do_post_processing ();
33   virtual void do_add_processing ();
34   virtual void do_pre_processing ();
35   virtual void do_substitute_dependency (Score_element*, Score_element*);
36 };
37
38 #endif // SLUR_HH
39
40