annotate implementations/mtp/package.lisp @ 81:4e1538df0d10
base/: add an implementation of diatonic pitch.
darcs-hash:20070717120206-c0ce4-b18278ab07116658e58839c4fd18972508da6658.gz
author |
Marcus Pearce <m.pearce@gold.ac.uk> |
date |
Tue, 17 Jul 2007 13:02:06 +0100 |
parents |
dc01096751af |
children |
03be243f9003 |
rev |
line source |
m@46
|
1 (cl:defpackage #:amuse-mtp
|
m@79
|
2 (:use #:common-lisp #:amuse #:amuse-utils #:amuse-segmentation)
|
m@53
|
3 (:export
|
m@53
|
4 ;; classes
|
m@53
|
5 #:mtp-dataset
|
m@79
|
6 #:mtp-composition
|
m@53
|
7 ;; accessors
|
m@53
|
8 #:get-dataset
|
m@53
|
9 ;; identifier constructors
|
m@53
|
10 #:make-mtp-composition-identifier
|
m@79
|
11 #:make-mtp-dataset-identifier
|
m@79
|
12 ;; phrase boundary classes
|
m@79
|
13 #:mtp-after-segmenter
|
m@79
|
14 #:mtp-before-segmenter
|
m@79
|
15 ))
|