added ROFL test cases + extra formatting hooks for attributes
[clinton/lisp-on-lines.git] / src / packages.lisp
index b0aa651..21d2151 100644 (file)
@@ -1,22 +1,46 @@
 (defpackage #:lisp-on-lines
   (:use 
-       #:common-lisp
-       #:contextl)
+   :common-lisp
+   #:contextl
+   #:closer-mop
+   #:postmodern
+   #:alexandria)
   (:nicknames #:lol)
-
   (:export
 
+;; ROFL stuff here temporarily
+   #:standard-db-access-class
+   #:make-object-from-plist
+   #:described-db-access-class
+   #:select-only
+   #:select
+   #:insert-into   
+   #:select-objects
+   #:select-only-n-objects
+   
+;; Descriptions
    #:find-description
-   #:ensure-description
+   #:description-of
    #:define-description
+   #:described-object
+   #:described-class
+   #:with-active-descriptions
+   #:with-inactive-descriptions
 
+   ;; Displays
    #:define-display
    #:display
+   #:display-using-description
    #:*display*
    #:*object*
    
+   ;; Attributes
    #:find-attribute
+   #:attribute
+   #:attributes
    #:attribute-label
+   #:attribute-function
+   #:attribute-value
+   #:active-attributes))
+
 
-(cl:defpackage #:lol-test
-  (:use #:cl #:lisp-on-lines #:stefil #:contextl))