]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/stream-event.hh
Don't use C++ default arguments.
[lilypond.git] / lily / include / stream-event.hh
index 13535c73f6ecd1826db46bf0e23eb2b4b5ed9569..ebdc17925cc576dcce8f1e22deadc4ec6afd5e1e 100644 (file)
 #include "smobs.hh"
 #include "prob.hh"
 
-class Stream_event
+class Stream_event : public Prob
 {
-  void init ();
-  SCM property_alist_;
-  Input *origin_;
-
 public:
   Stream_event ();
-  Input *origin () const;
+  VIRTUAL_COPY_CONSTRUCTOR (Stream_event, Stream_event);
 
-  DECLARE_SCHEME_CALLBACK (undump, (SCM));
-  DECLARE_SCHEME_CALLBACK (dump, (SCM));
+  Stream_event (SCM event_class, SCM mutable_props=SCM_EOL);
+  Stream_event (SCM class_name, Input *);
 
-  // todo: make Input mandatory.
-  Stream_event (SCM property_alist);
-  Stream_event (Context *c, SCM class_name);
-  Stream_event (Context *c, Input *);
-  Stream_event (Stream_event *ev);
+  Input *origin () const;
+  void set_spot (Input *i);
+  bool internal_in_event_class (SCM class_name);
 
-  SCM internal_get_property (SCM) const;
-  void internal_set_property (SCM prop, SCM val);
+  virtual SCM copy_mutable_properties () const;
 
-protected:
-  DECLARE_SMOBS (Stream_event,);
+  DECLARE_SCHEME_CALLBACK (undump, (SCM));
+  DECLARE_SCHEME_CALLBACK (dump, (SCM));
 };
 
-DECLARE_UNSMOB (Stream_event, stream_event);
+#define in_event_class(class_name) internal_in_event_class (ly_symbol2scm (class_name))
+
+Stream_event *unsmob_stream_event (SCM);
 DECLARE_TYPE_P (Stream_event);
+SCM ly_event_deep_copy (SCM);
 
 #endif /* STREAM_EVENT_HH */