Properties are special now!
[clinton/lisp-on-lines.git] / src / packages.lisp
CommitLineData
c7e4e4bc 1(defpackage #:lisp-on-lines
2 (:use
079b9084 3 :common-lisp
4358148e 4 #:contextl
5 #:closer-mop
6de8d300 6 #:postmodern
4358148e 7 #:alexandria)
c7e4e4bc 8 (:nicknames #:lol)
1d51a2ee 9 (:export
6de8d300 10
11;; ROFL stuff here temporarily
12 #:standard-db-access-class
13 #:make-dao-from-row
14 #:described-db-access-class
15
079b9084 16;; Descriptions
1d51a2ee 17 #:find-description
1d51a2ee 18 #:define-description
6de8d300 19 #:described-class
4358148e 20 #:with-active-descriptions
21
079b9084 22 ;; Displays
1d51a2ee 23 #:define-display
24 #:display
079b9084 25 #:display-using-description
1d51a2ee 26 #:*display*
27 #:*object*
28
079b9084 29 ;; Attributes
1d51a2ee 30 #:find-attribute
4358148e 31 #:attribute
32 #:attributes
1d51a2ee 33 #:attribute-label
079b9084 34 #:attribute-function
35 #:attribute-value))
36
1d51a2ee 37