view base/datasets/datasets-db/classes.lisp @ 262:2284dbc7d51a

fix missing description value in mtp-compositions
author Jamie Forth <j.forth@gold.ac.uk>
date Sun, 10 Apr 2011 10:23:04 +0100
parents 6a3adca16910
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)))