annotate implementations/mtp/constructors.lisp @ 188:18d3480e7ec8
update play-midifile
find-executable-in-search-path was removed in sbcl-1.0.13
darcs-hash:20090103005528-16a00-83ef5cb3f7c00b8c46bc9fed1c0569370bc53963.gz
author |
j.forth <j.forth@gold.ac.uk> |
date |
Sat, 03 Jan 2009 00:55:28 +0000 |
parents |
ce4a90427366 |
children |
|
rev |
line source |
m@46
|
1 (cl:in-package #:amuse-mtp)
|
m@46
|
2
|
m@53
|
3 (defun make-mtp-dataset-identifier (dataset-id)
|
m@53
|
4 (make-instance 'mtp-dataset-identifier :dataset-id dataset-id))
|
m@53
|
5
|
m@46
|
6 (defun make-mtp-composition-identifier (dataset-id composition-id)
|
m@46
|
7 (make-instance 'mtp-composition-identifier
|
m@46
|
8 :dataset-id dataset-id :composition-id composition-id))
|
m@46
|
9
|
m@53
|
10 (defun make-mtp-dataset (&rest args)
|
m@53
|
11 (apply #'make-instance 'mtp-dataset args))
|
m@53
|
12
|
m@46
|
13 (defun make-mtp-composition (&rest args)
|
m@46
|
14 (apply #'make-instance 'mtp-composition args))
|
m@46
|
15
|
m@46
|
16 (defun make-mtp-event (&rest args)
|
m@46
|
17 (apply #'make-instance 'mtp-event args))
|
m@46
|
18
|