view base/datasets/datasets-db/classes.lisp @ 251:6a3adca16910

Refactor dataset stuff out of amuse-database-admin, and add midifile-dataset.
author Jamie Forth <j.forth@gold.ac.uk>
date Thu, 24 Feb 2011 11:23:18 +0000
parents
children
line wrap: on
line source
(cl:in-package #:amuse-datasets)

(defclass db-dataset-identifier (dataset-identifier)
  ((dataset-id :reader dataset-id
	       :initarg :dataset-id))
  (:documentation "A dataset stored in a database."))

(defclass db-dataset (dataset)
  ((identifier :initarg :identifier
	       :reader identifier)
   (description :initarg :description
		:reader description)))