diff options
author | Alexander Gluzsky <sss123next@list.ru> | 2013-03-14 08:26:08 +0000 |
---|---|---|
committer | Alexander Gluzsky <sss123next@list.ru> | 2013-03-14 08:26:08 +0000 |
commit | 05f0ab2b372cf24cb148faaea790c1772955365f (patch) | |
tree | 09e021f0012810d13dd8783551bacf7f78bf6ee5 /plugins/qt_clist/qt_clist.h | |
parent | 809aa14dd2119e7b0de93846eb38bbb83073dad6 (diff) |
started prting stdclist to qt, currently just qt event loop implemented, nothing more, does not try to build/use
git-svn-id: http://svn.miranda-ng.org/main/trunk@4014 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/qt_clist/qt_clist.h')
-rwxr-xr-x | plugins/qt_clist/qt_clist.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/qt_clist/qt_clist.h b/plugins/qt_clist/qt_clist.h new file mode 100755 index 0000000000..5f191b5eb0 --- /dev/null +++ b/plugins/qt_clist/qt_clist.h @@ -0,0 +1,19 @@ +#ifndef QT_CLIST_H
+#define QT_CLIST_H
+
+#include "qt_clist_global.h"
+#include <QApplication>
+#include <QMessageBox>
+#include <QThread>
+
+
+
+
+class Qt_clist : public QObject
+{
+ Q_OBJECT
+public:
+ Qt_clist();
+};
+
+#endif // QT_CLIST_H
|