activityfw/activitydatabase/s60/inc/hsserializer.h
changeset 103 b99b84bcd2d1
parent 80 397d00875918
equal deleted inserted replaced
83:156f692b1687 103:b99b84bcd2d1
    14 * Description:
    14 * Description:
    15 *
    15 *
    16 */
    16 */
    17 #ifndef HSSERIALIZER_H
    17 #ifndef HSSERIALIZER_H
    18 #define HSSERIALIZER_H
    18 #define HSSERIALIZER_H
       
    19 
    19 #include <qvariant.h>
    20 #include <qvariant.h>
    20 #include <qpixmap.h>
       
    21 
    21 
    22 /**
    22 /**
    23  * Operator serialize VarinatHash to RBuf8
    23  * Operator serialize VarinatHash to RBuf8
    24  */
    24  */
    25 RBuf8 &operator <<(RBuf8 &dst, const QVariantHash &src);
    25 RBuf8 &operator <<(RBuf8 &dst, const QVariantHash &src);
    27 /**
    27 /**
    28  * Operator deserialize RBuf8 to VarinatHash
    28  * Operator deserialize RBuf8 to VarinatHash
    29  */
    29  */
    30 QVariantHash &operator <<(QVariantHash &dst, const TDesC8 &src);
    30 QVariantHash &operator <<(QVariantHash &dst, const TDesC8 &src);
    31 
    31 
    32 /**
       
    33  * Operator deserialize RBuf8 to QList<QVariantHash>
       
    34  */
       
    35 QList<QVariantHash>& operator <<(QList<QVariantHash>& dst, const TDesC8 &src);
       
    36 #endif
    32 #endif