annotate implementations/geerdes/package.lisp @ 216:e1842efb1dd4
amuse-database-admin add implementation and dataset functionality
Ignore-this: 787cc01acf2d6a58640fec017de16c17
darcs-hash:20090716145807-16a00-6fe5ad4a2b6252b2c1f3d109a16455bb32243965.gz
committer: Jamie Forth <j.forth@gold.ac.uk>
author |
j.forth <j.forth@gold.ac.uk> |
date |
Thu, 24 Feb 2011 11:23:18 +0000 |
parents |
e2839225f6fb |
children |
bda591c61b7a |
rev |
line source |
d@88
|
1 (cl:defpackage #:amuse-geerdes
|
j@211
|
2 (:use #:common-lisp #:amuse #:amuse-utils #:amuse-midi
|
j@211
|
3 #:amuse-segmentation #:amuse-database-admin)
|
d@88
|
4 (:export
|
d@88
|
5 ;; classes
|
d@88
|
6 #:geerdes-composition
|
d@88
|
7 #:geerdes-monody
|
d@135
|
8 #:geerdes-pitched-event
|
d@135
|
9 #:geerdes-percussive-event
|
d@88
|
10 ;; identifier constructors
|
d@88
|
11 #:g-id
|
d@88
|
12 #:g-id-file-id
|
d@88
|
13 ;; database identification
|
d@88
|
14 #:cat-id
|
d@88
|
15 #:file-id
|
d@88
|
16 ;; other (caching)
|
d@88
|
17 #:properties)
|
d@88
|
18 (:documentation "Package for MIDI pop-song database, originating
|
j@211
|
19 from Geerdes, a commercial supplier."))
|