comparison 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
comparison
equal deleted inserted replaced
2:ee8e70aca95e 3:323efbe5c2f7
1 #include <qdatastream.h>
2 #include <qline.h>
3
4 #include "qtd_core.h"
5
6 // QLine::operator<<(QDataStream & arg__1)
7 extern "C" DLL_PUBLIC void qtd_QLine_writeTo_QDataStream
8 (void* __this_nativeId,
9 void* arg__1)
10 {
11 QDataStream& __qt_arg__1 = (QDataStream& ) * (QDataStream *) arg__1;
12 QLine *__qt_this = (QLine *) __this_nativeId;
13 if (__qt_this != 0) ::operator<<((QDataStream& )__qt_arg__1, *__qt_this);
14
15 }
16
17 // QLine::operator>>(QDataStream & arg__1)
18 extern "C" DLL_PUBLIC void qtd_QLine_readFrom_QDataStream
19 (void* __this_nativeId,
20 void* arg__1)
21 {
22 QDataStream& __qt_arg__1 = (QDataStream& ) * (QDataStream *) arg__1;
23 QLine *__qt_this = (QLine *) __this_nativeId;
24 if (__qt_this != 0) ::operator>>((QDataStream& )__qt_arg__1, *__qt_this);
25
26 }