Mercurial > hg > amuse
view implementations/mtp/constructors.lisp @ 64:c8f1b0ab0007
midi-output is now in tools
darcs-hash:20070628144900-f76cc-f96cd99afbd2d9cf3274717ade3578e4c97559e8.gz
author | David Lewis <d.lewis@gold.ac.uk> |
---|---|
date | Thu, 28 Jun 2007 15:49:00 +0100 |
parents | ce4a90427366 |
children |
line wrap: on
line source
(cl:in-package #:amuse-mtp) (defun make-mtp-dataset-identifier (dataset-id) (make-instance 'mtp-dataset-identifier :dataset-id dataset-id)) (defun make-mtp-composition-identifier (dataset-id composition-id) (make-instance 'mtp-composition-identifier :dataset-id dataset-id :composition-id composition-id)) (defun make-mtp-dataset (&rest args) (apply #'make-instance 'mtp-dataset args)) (defun make-mtp-composition (&rest args) (apply #'make-instance 'mtp-composition args)) (defun make-mtp-event (&rest args) (apply #'make-instance 'mtp-event args))