annotate base/database/package.lisp @ 288:d1e5bbcc5ea4

Rationalise base and geerdes classes, constructors and methods. Ignore-this: d9d4d88566a6d110844d91d4c70513cd Towards a more standardised interface. Some of these changes (generalised constructors and reader functions) are necessary for amuse-database-admin functionality and some other CHARM-like things. darcs-hash:20090716154406-16a00-8a9b4fb1fc1f5ba75af66a1bbd87e1bb68e02493.gz
author j.forth <j.forth@gold.ac.uk>
date Thu, 16 Jul 2009 16:44:06 +0100
parents 00d35eb70ef9
children 317fe3126c6c
rev   line source
j@279 1 (cl:defpackage #:amuse-database-admin
j@279 2 (:use #:common-lisp #:amuse)
j@279 3 (:export #:connect-to-database ; database-connect
j@279 4 #:disconnect-from-database
j@279 5 #:*amuse-database*
j@279 6 #:make-db-option-file
j@287 7
j@287 8 #:make-new-dataset ; datasets-functions
j@287 9 #:assign-composition-to-dataset
j@287 10 #:get-dataset
j@287 11 #:make-amuse-dataset-identifier
j@287 12
j@287 13 #:make-composition-identifier ; generics
j@287 14
j@287 15 #:register-new-implementation ; implementation functions
j@287 16 #:implementation-package
j@287 17 #:implementation-namestring
j@279 18 ))