summaryrefslogtreecommitdiffstats
path: root/src/mxcl.library.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-06-13 22:45:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-06-13 22:45:28 +0900
commit5f44f7b187093ef290315b7f8766b540a31de35f (patch)
tree27ffb7b218199ca04f240c390c52426c65f45dce /src/mxcl.library.h
downloadcodeine-5f44f7b187093ef290315b7f8766b540a31de35f.tar.gz
codeine-5f44f7b187093ef290315b7f8766b540a31de35f.zip
Initial code import from debian snapshot
https://snapshot.debian.org/package/codeine/1.0.1-3.dfsg-3.1/ Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/mxcl.library.h')
-rw-r--r--src/mxcl.library.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/mxcl.library.h b/src/mxcl.library.h
new file mode 100644
index 0000000..feb71ef
--- /dev/null
+++ b/src/mxcl.library.h
@@ -0,0 +1,28 @@
+// (C) 2005 Max Howell (max.howell@methylblue.com)
+// See COPYING file for licensing information
+
+#ifndef MXCL_LIBRARY_H
+#define MXCL_LIBRARY_H
+
+
+namespace mxcl
+{
+ /// Allocate on stack, wait cursor will be shown during existance
+ struct WaitCursor
+ {
+ WaitCursor();
+ ~WaitCursor();
+ };
+}
+
+
+/// almost always negates the need to #include <klocale.h> in implementations
+#include <qstring.h>
+QString i18n( const char *text );
+
+
+/// very useful for QStringLists
+#define foreach( x ) \
+ for( QStringList::ConstIterator it = x.constBegin(), end = x.constEnd(); it != end; ++it )
+
+#endif