annotate base/datasets/datasets-file/constructors.lisp @ 266:d605fd37b0ee
fix mtp description again - return the string not '(string)
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Sun, 10 Apr 2011 18:28:27 +0100 |
parents |
6a3adca16910 |
children |
|
rev |
line source |
j@251
|
1 (cl:in-package #:amuse-datasets)
|
j@251
|
2
|
j@251
|
3 (defun make-midifile-dataset-identifier (dataset-path
|
j@251
|
4 &optional (implementation-package
|
j@251
|
5 *package*))
|
j@251
|
6 "*package* is bound to the package in which the function is called,
|
j@251
|
7 e.g. if you are in-package amuse-midi, the implementation-package will
|
j@251
|
8 be amuse-midi. If you are calling this from within a different
|
j@251
|
9 package, use find-package."
|
j@251
|
10 (make-instance 'midifile-dataset-identifier
|
j@251
|
11 :dataset-path dataset-path
|
j@251
|
12 :implementation-package implementation-package))
|