diff base/package.lisp @ 24:8d2b1662f658

base/*.lisp: move files in amuse-base to subdirectory. darcs-hash:20061215161617-aa3d6-1b63bd555b02ec02aa2db12d335e8b726e2108cd.gz
author m.pearce <m.pearce@gold.ac.uk>
date Fri, 15 Dec 2006 16:16:17 +0000
parents
children c19e47dd674a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/base/package.lisp	Fri Dec 15 16:16:17 2006 +0000
@@ -0,0 +1,109 @@
+(cl:defpackage #:amuse
+  (:use #:common-lisp)
+  (:export #:constituent
+	   #:composition
+	   #:monody
+	   #:moment-designator
+	   #:period-designator
+	   #:anchored-period-designator
+	   #:pitch-designator
+	   #:pitch-interval-designator
+	   #:moment
+	   #:period
+	   #:floating-period
+	   #:anchored-period
+	   #:frequency
+	   #:pitch
+	   #:chromatic-pitch 
+	   #:diatonic-pitch   
+	   #:pitch-interval
+	   #:pitched-event
+	   #:chromatic-pitched-event
+	   #:midi-pitched-event
+	   #:percussive-event
+	   #:midi-percussive-event
+	   #:time-signature
+	   #:basic-time-signature
+	   #:key-signature
+	   #:basic-key-signature
+	   #:midi-key-signature
+	   #:tempo
+	   #:get-composition
+	   #:chromatic-pitch
+	   #:diatonic-pitch
+	   #:midi-pitch-number
+	   #:meredith-chromatic-pitch-number
+	   #:pitch-class
+	   #:span
+	   #:duration
+	   #:timepoint
+	   #:onset
+	   #:cut-off
+	   #:beat-units-per-bar
+	   #:time-signature-numerator
+	   #:beat-units
+	   #:time-signature-denominator
+	   #:key-signature-sharps
+	   #:bpm
+	   #:microseconds-per-crotchet
+	   #:anchored-period
+	   #:floating-period
+	   #:moment
+	   #:time+
+	   #:time-
+	   #:time>
+	   #:time<
+	   #:time=
+	   #:time>=
+	   #:time<=
+	   #:time/=
+	   #:duration>
+	   #:duration<
+	   #:duration=
+	   #:duration>=
+	   #:duration<=
+	   #:duration/=
+	   #:duration*
+	   #:duration/
+	   #:pitch+
+	   #:pitch-
+	   #:pitch>
+	   #:pitch<
+	   #:pitch=
+	   #:pitch>=
+	   #:pitch<=
+	   #:pitch/=
+	   #:interval>
+	   #:interval<
+	   #:interval=
+	   #:interval>=
+	   #:interval<=
+	   #:interval/=
+	   #:meets
+	   #:before
+	   #:overlaps
+	   #:during
+	   #:starts
+	   #:ends
+	   #:subinterval
+	   #:disjoint
+	   #:period-intersection
+	   #:inter-onset-interval
+	   #:get-applicable-time-signatures
+	   #:get-applicable-tempi
+	   #:get-applicable-key-signatures
+	   #:make-moment
+	   #:make-floating-period
+	   #:make-anchored-period
+	   #:make-chromatic-pitch
+	   #:make-diatonic-pitch
+	   #:make-pitch-interval
+	   #:make-chromatic-pitched-event
+	   #:make-midi-pitched-event
+	   #:make-midi-percussive-event
+	   #:make-basic-time-signature
+	   #:make-basic-key-signature
+	   #:make-midi-key-signature
+	   #:make-tempo
+	   
+))
\ No newline at end of file