annotate base/database/package.lisp @ 266:d605fd37b0ee
fix mtp description again - return the string not '(string)
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Sun, 10 Apr 2011 18:28:27 +0100 |
parents |
6a3adca16910 |
children |
|
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@251
|
8 #:list-collections ; generics
|
j@235
|
9 #:list-compositions
|
j@216
|
10
|
j@216
|
11 #:register-new-implementation ; implementation functions
|
j@216
|
12 #:implementation-package
|
j@216
|
13 #:implementation-namestring
|
j@191
|
14 ))
|