comparison qt/d2/qt/core/QPoint.d @ 295:463563fc9e17 signals

more of QList. const functions in C++ are now const in D too. Drop of the store result feature, which was incompatible with const functions and introduced too much of the bloat in the generator.
author eldar
date Sun, 22 Nov 2009 11:01:19 +0000
parents 34a37904ff77
children b460cd08041f
comparison
equal deleted inserted replaced
294:bb37b0ed94c9 295:463563fc9e17
90 } 90 }
91 91
92 public final void readFrom(QDataStream arg__1) { 92 public final void readFrom(QDataStream arg__1) {
93 qtd_QPoint_readFrom_QDataStream(&this, arg__1 is null ? null : arg__1.__nativeId); 93 qtd_QPoint_readFrom_QDataStream(&this, arg__1 is null ? null : arg__1.__nativeId);
94 } 94 }
95
96 // service stuff
97 public alias void __isNativeValueType;
98
99 struct QTypeInfo
100 {
101 enum bool isComplex = true;
102 enum bool isStatic = false;
103 enum bool isLarge = true;
104 enum bool isPointer = false;
105 enum bool isDummy = false;
106 }
107
95 108
96 private: 109 private:
97 // ### Qt 5; remove the ifdef and just have the same order on all platforms. 110 // ### Qt 5; remove the ifdef and just have the same order on all platforms.
98 version(OSX) 111 version(OSX)
99 { 112 {
206 219
207 public final void readFrom(QDataStream arg__1) { 220 public final void readFrom(QDataStream arg__1) {
208 qtd_QPointF_readFrom_QDataStream(&this, arg__1 is null ? null : arg__1.__nativeId); 221 qtd_QPointF_readFrom_QDataStream(&this, arg__1 is null ? null : arg__1.__nativeId);
209 } 222 }
210 223
224 // service stuff
225 public alias void __isNativeValueType;
226
227 struct QTypeInfo
228 {
229 enum bool isComplex = true;
230 enum bool isStatic = false;
231 enum bool isLarge = true;
232 enum bool isPointer = false;
233 enum bool isDummy = false;
234 }
235
211 private: 236 private:
212 qreal xp; 237 qreal xp;
213 qreal yp; 238 qreal yp;
214 } 239 }
215 240