2 spring.cc -- implement Spring
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
11 #include "ly-smobs.icc"
13 IMPLEMENT_SIMPLE_SMOBS (Spring
);
16 Spring::mark_smob (SCM
)
18 return SCM_UNSPECIFIED
;
22 Spring::print_smob (SCM
, SCM p
, scm_print_state
*)
24 scm_puts ("#<Spring smob>", p
);
29 Spring::equal_p (SCM a
, SCM b
)
31 return a
== b
? SCM_BOOL_T
: SCM_BOOL_F
;