Mercurial > hg > amuse
view implementations/mtp/constructors.lisp @ 92:2c5866238d7b
gsharp renamed define-added-mixin -> define-stealth-mixin
darcs-hash:20070723170536-dc3a5-61b0d2a00130b64b2215211beb23b94460a6e177.gz
author | c.rhodes <c.rhodes@gold.ac.uk> |
---|---|
date | Mon, 23 Jul 2007 18:05:36 +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))