Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 4442dd9bdde98a1d9ca2177557e87d7d > files > 358

libqxt-devel-0.6.1-3.fc15.i686.rpm

#include "node.h"



QDataStream &operator<<(QDataStream &out,const XmlNode &c)
{
    out<<c.name;
    out<<c.value;
    out<<c.type;
    return out;
}
QDataStream &operator>>(QDataStream &in, XmlNode &c )
{
    in>>c.name;
    in>>c.value;
    in>>c.type;
    return in;
}

QDebug operator<<(QDebug dbg, const XmlNode &c)
{
    dbg.nospace() << "(" << c.name << ", " << c.value << ")";
    return dbg.space();
}