examples/tools/customtype/message.h
branchRCL_3
changeset 5 d3bac044e0f0
parent 4 3b1da2848fc7
equal deleted inserted replaced
4:3b1da2848fc7 5:d3bac044e0f0
    68 //! [custom type meta-type declaration]
    68 //! [custom type meta-type declaration]
    69 Q_DECLARE_METATYPE(Message);
    69 Q_DECLARE_METATYPE(Message);
    70 //! [custom type meta-type declaration]
    70 //! [custom type meta-type declaration]
    71 
    71 
    72 //! [custom type streaming operator]
    72 //! [custom type streaming operator]
    73 QDebug &operator<<(QDebug &dbg, const Message &message);
    73 QDebug operator<<(QDebug dbg, const Message &message);
    74 //! [custom type streaming operator]
    74 //! [custom type streaming operator]
    75 
    75 
    76 #endif
    76 #endif