Export delete-app since other modules (qt.gui) might like to add methods to it.
Annotate for file /src/package.lisp
2010-01-10 tobias 1 (defpackage :cl-smoke.qt.core
2010-01-23 tobias 2 (:use :cl :smoke :cffi :bordeaux-threads :cxx-support :alexandria)
22:17:35 ' 3 (:export #:define-qvector-translations
' 4 #:with-application
2010-01-25 tobias 5 #:delete-app
2010-01-23 tobias 6 #:ensure-app
22:17:35 ' 7 #:kill-app))
2009-06-11 tobias 8
14:59:48 ' 9 (defpackage :cl-smoke.qt
2009-07-01 tobias 10 (:use) ;; do not use :cl to prevent collision with TIME and CHAR
2009-06-11 tobias 11 (:nicknames :qt)
2009-05-24 tobias 12 (:export #:app
2009-04-05 tobias 13 #:app-p
17:56:16 ' 14 #:exec
2009-05-24 tobias 15 #:*exec-p*
2009-04-05 tobias 16 #:with-app
17:56:16 ' 17 #:with-core-app
' 18
' 19 #:with-painter
2009-04-07 tobias 20 #:single-shot
20:07:00 ' 21 #:do-delayed-initialize
2009-04-05 tobias 22
17:56:16 ' 23 #:tr
' 24 #:with-translator
' 25 #:with-libqt-translator
' 26
' 27 #:qmethod
' 28 #:qsignal
' 29 #:qslot
' 30
' 31 #:property
' 32 #:property-p
2009-05-31 tobias 33 #:remove-property
2009-04-05 tobias 34 #:properties
17:56:16 ' 35 #:class-properties
' 36 #:class-direct-properties
' 37
2009-06-11 tobias 38 #:make-char
14:59:48 ' 39 #:from-char
' 40
2009-04-05 tobias 41 #:from-variant
17:56:16 ' 42 #:make-variant
' 43 #:make-lisp-variant
2009-05-11 tobias 44 #:value
14:14:14 ' 45 #:variant-boundp
2009-04-05 tobias 46
2009-05-14 tobias 47 #:search-file
12:11:11 ' 48
2009-04-05 tobias 49 #:connect
2009-06-11 tobias 50 #:disconnect
14:59:48 ' 51 #:disconnect-all
2009-04-05 tobias 52 #:get-slot
17:56:16 ' 53 #:get-signal
' 54 #:make-slot
' 55 #:make-signal
' 56 #:sender))
' 57