|
|
#ifndef __kdatastream__h #define __kdatastream__h #includeinline QDataStream & operator << (QDataStream & str, bool b) { str << Q_INT8(b); return str; } inline QDataStream & operator >> (QDataStream & str, bool & b) { Q_INT8 l; str >> l; b = bool(l); return str; } #endif
| Generated by: joey on debussy on Wed Apr 20 19:04:28 2005, using kdoc 2.0a53. |