annotate base/datasets/datasets-db/classes.lisp @ 259:c4e9a7bb9897
change move-to-first-bar to return a constituent, not a list of events
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Sat, 19 Mar 2011 18:50:24 +0000 |
parents |
6a3adca16910 |
children |
|
rev |
line source |
j@251
|
1 (cl:in-package #:amuse-datasets)
|
j@251
|
2
|
j@251
|
3 (defclass db-dataset-identifier (dataset-identifier)
|
j@251
|
4 ((dataset-id :reader dataset-id
|
j@251
|
5 :initarg :dataset-id))
|
j@251
|
6 (:documentation "A dataset stored in a database."))
|
j@251
|
7
|
j@251
|
8 (defclass db-dataset (dataset)
|
j@251
|
9 ((identifier :initarg :identifier
|
j@251
|
10 :reader identifier)
|
j@251
|
11 (description :initarg :description
|
j@251
|
12 :reader description)))
|