added ROFL test cases + extra formatting hooks for attributes
[clinton/lisp-on-lines.git] / src / packages.lisp
1 (defpackage #:lisp-on-lines
2 (:use
3 :common-lisp
4 #:contextl
5 #:closer-mop
6 #:postmodern
7 #:alexandria)
8 (:nicknames #:lol)
9 (:export
10
11 ;; ROFL stuff here temporarily
12 #:standard-db-access-class
13 #:make-object-from-plist
14 #:described-db-access-class
15 #:select-only
16 #:select
17 #:insert-into
18 #:select-objects
19 #:select-only-n-objects
20
21 ;; Descriptions
22 #:find-description
23 #:description-of
24 #:define-description
25 #:described-object
26 #:described-class
27 #:with-active-descriptions
28 #:with-inactive-descriptions
29
30 ;; Displays
31 #:define-display
32 #:display
33 #:display-using-description
34 #:*display*
35 #:*object*
36
37 ;; Attributes
38 #:find-attribute
39 #:attribute
40 #:attributes
41 #:attribute-label
42 #:attribute-function
43 #:attribute-value
44 #:active-attributes))
45
46