macros.lisp 360 B

1234567891011121314151617
  1. ;;;; macros.lisp
  2. ;;;;
  3. ;;;; Copyright (c) 2016 Samuel W. Flint <swflint@flintfam.org>
  4. (in-package #:collect)
  5. ;;; "collect" goes here.
  6. (defmacro define-table (name columns constraints))
  7. (defmacro define-view (name columns query))
  8. (defmacro define-query (name title query display))
  9. (defmacro define-form (name title table columns display))
  10. ;;; End collect