]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stream-event.hh
* lily/*-performer.cc: Converted try_music to listen_*
[lilypond.git] / lily / include / stream-event.hh
1 /*
2   stream-event.hh -- declare Stream_event
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005-2006 Erik Sandberg <mandolaerik@gmail.com>
7 */
8
9 #ifndef STREAM_EVENT_HH
10 #define STREAM_EVENT_HH
11
12 #include "lily-proto.hh"
13 #include "smobs.hh"
14 #include "prob.hh"
15
16 class Stream_event : public Prob
17 {
18 public:
19   Stream_event ();
20   Input *origin () const;
21   void set_spot (Input *i);
22   bool internal_in_event_class (SCM class_name);
23
24   DECLARE_SCHEME_CALLBACK (undump, (SCM));
25   DECLARE_SCHEME_CALLBACK (dump, (SCM));
26
27   // todo: remove unneeded constructors
28   Stream_event (SCM event_class, SCM mutable_props);
29   Stream_event (SCM property_alist);
30   Stream_event (SCM class_name, Input *);
31   Stream_event (Stream_event *ev);
32 };
33
34 #define in_event_class(class_name) internal_in_event_class (ly_symbol2scm (class_name))
35
36 Stream_event *unsmob_stream_event (SCM);
37 DECLARE_TYPE_P (Stream_event);
38
39 #endif /* STREAM_EVENT_HH */