#_ reader macro enum calls & cleanup
Annotate for file src/package.lisp
2009-07-02 tobias 1 ;; Remove the :qt nickname of :cl-smoke.qt to allow
17:34:07 ' 2 ;; :cl-smoke.commonqt to use it.
' 3 (eval-when (:load-toplevel :compile-toplevel)
' 4 (rename-package :cl-smoke.qt :cl-smoke.qt))
' 5
' 6 (defpackage :cl-smoke.commonqt
' 7 (:use :cl :cxx-support :cffi)
' 8 (:nicknames :qt)
2009-07-24 tobias 9 (:export #:new
2009-07-02 tobias 10
17:34:07 ' 11 #:qsignal
' 12 #:qslot
' 13
' 14 #:make-qapplication
' 15
' 16 #:qt-class
' 17
' 18 #:emit-signal
' 19 #:call-next-qmethod
' 20 #:primitive-value
' 21
' 22 #:uint
2009-07-02 tobias 23 #:int
20:48:38 ' 24 #:bool
' 25 #:qstring
' 26 #:enum=))
2009-07-02 tobias 27
17:34:07 ' 28 ;; No named-readtables support; fake it.
' 29 ;;
' 30 (defpackage :named-readtables
' 31 (:use :cl)
' 32 (:export #:in-readtable))
' 33
' 34 (in-package :named-readtables)
' 35 (defun in-readtable (name)
' 36 (declare (ignore name)))