view cpp/qt_core/QLine_shell.cpp @ 405:9d6e4703a458

Make QObject::property()/setProperty() accessible from D. It is specified to be private in the type system back from QtJambi because the functions take a char pointer instead of a QString, but the conversion functions were missing so far.
author David Nadlinger <code@klickverbot.at>
date Thu, 17 Mar 2011 23:09:43 +0100
parents d2f48c4cb3e3
children
line wrap: on
line source

#include <qdatastream.h>
#include <qline.h>

#include "qtd_core.h"

// QLine::operator<<(QDataStream & arg__1)
QTD_EXTERN QTD_EXPORT 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)
QTD_EXTERN QTD_EXPORT 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);

}