diff cpp/qt_core/QLine_shell.cpp @ 3:323efbe5c2f7

native wrap of QLine and QLineF, fixes in opEquals, updated QPainter to the use of native structs
author eldar
date Wed, 13 May 2009 17:34:40 +0000
parents
children 9784459f0750
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/qt_core/QLine_shell.cpp	Wed May 13 17:34:40 2009 +0000
@@ -0,0 +1,26 @@
+#include <qdatastream.h>
+#include <qline.h>
+
+#include "qtd_core.h"
+
+// QLine::operator<<(QDataStream & arg__1)
+extern "C" DLL_PUBLIC void qtd_QLine_writeTo_QDataStream
+(void* __this_nativeId,
+ void* arg__1)
+{
+    QDataStream&  __qt_arg__1 = (QDataStream& ) * (QDataStream *) arg__1;
+    QLine *__qt_this = (QLine *) __this_nativeId;
+    if (__qt_this != 0) ::operator<<((QDataStream& )__qt_arg__1, *__qt_this);
+
+}
+
+// QLine::operator>>(QDataStream & arg__1)
+extern "C" DLL_PUBLIC void qtd_QLine_readFrom_QDataStream
+(void* __this_nativeId,
+ void* arg__1)
+{
+    QDataStream&  __qt_arg__1 = (QDataStream& ) * (QDataStream *) arg__1;
+    QLine *__qt_this = (QLine *) __this_nativeId;
+    if (__qt_this != 0) ::operator>>((QDataStream& )__qt_arg__1, *__qt_this);
+
+}