Export cxx operator functions.
Sun Apr 12 21:53:53 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* Export cxx operator functions.
diff -rN -u old-smoke/src/package.lisp new-smoke/src/package.lisp
--- old-smoke/src/package.lisp 2014-09-30 10:24:49.000000000 +0200
+++ new-smoke/src/package.lisp 2014-09-30 10:24:49.000000000 +0200
@@ -32,7 +32,22 @@
(defpackage #:cxx
(:use) ;; do not use #:cl
- (:export #:class))
+ (:export #:class
+
+ #:= ;; These are defined in :qt since we need QGlobalSpace
+ #:/=
+ #:< #:<=
+ #:> #:>=
+ #:incf
+ #:decf
+ #:+
+ #:-
+ #:*
+ #:/
+ #:1+
+ #:1-
+
+ #:aref))