annotate implementations/mtp/package.lisp @ 186:03be243f9003
implementations/mtp/classes.lisp: Add BIOI (Basic IOI) as a basic viewpoint.
darcs-hash:20081103124142-c0ce4-272df768ca2816412f1a4f89297e68d4ef35b4fd.gz
author |
Marcus Pearce <m.pearce@gold.ac.uk> |
date |
Mon, 03 Nov 2008 12:41:42 +0000 |
parents |
dc01096751af |
children |
|
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@186
|
5 #:mtp-event
|
m@53
|
6 #:mtp-dataset
|
m@79
|
7 #:mtp-composition
|
m@53
|
8 ;; accessors
|
m@53
|
9 #:get-dataset
|
m@53
|
10 ;; identifier constructors
|
m@53
|
11 #:make-mtp-composition-identifier
|
m@79
|
12 #:make-mtp-dataset-identifier
|
m@79
|
13 ;; phrase boundary classes
|
m@79
|
14 #:mtp-after-segmenter
|
m@79
|
15 #:mtp-before-segmenter
|
m@79
|
16 ))
|