view cpp/qt_core/QLine_shell.cpp @ 282:256ab6cb8e85

Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
author eldar
date Fri, 16 Oct 2009 02:43:59 +0000
parents 323efbe5c2f7
children 9784459f0750
line wrap: on
line source

#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);

}