annotate base/database/package.lisp @ 244:76a695fe294f
Add floating constituent classes.
Ignore-this: f3afc46c68f8ab3b1c9c482919a7378f
darcs-hash:20100604153709-16a00-5ec4568ef64401cb0cc67a99246a125367ce4734.gz
committer: Jamie Forth <j.forth@gold.ac.uk>
author |
j.forth <j.forth@gold.ac.uk> |
date |
Thu, 24 Feb 2011 11:23:18 +0000 |
parents |
ea45a3d0730c |
children |
6a3adca16910 |
rev |
line source |
j@191
|
1 (cl:defpackage #:amuse-database-admin
|
j@191
|
2 (:use #:common-lisp #:amuse)
|
j@191
|
3 (:export #:connect-to-database ; database-connect
|
j@191
|
4 #:disconnect-from-database
|
j@191
|
5 #:*amuse-database*
|
j@191
|
6 #:make-db-option-file
|
j@216
|
7
|
j@216
|
8 #:make-new-dataset ; datasets-functions
|
j@216
|
9 #:assign-composition-to-dataset
|
j@221
|
10 #:assign-compositions-to-dataset
|
j@221
|
11 #:make-composition-identifiers-from-file
|
j@216
|
12 #:get-dataset
|
j@216
|
13 #:make-amuse-dataset-identifier
|
j@216
|
14
|
j@216
|
15 #:make-composition-identifier ; generics
|
j@235
|
16 #:list-collections
|
j@235
|
17 #:list-compositions
|
j@216
|
18
|
j@216
|
19 #:register-new-implementation ; implementation functions
|
j@216
|
20 #:implementation-package
|
j@216
|
21 #:implementation-namestring
|
j@191
|
22 ))
|