Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > d2229253b8f3127ab89b179a82cc8466 > files > 344

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

#include "contact.h"



QDataStream &operator<<(QDataStream &out,const Contact &c)
{
    out<<c.name;
    out<<c.phone;
    out<<c.address;
    return out;
}
QDataStream &operator>>(QDataStream &in, Contact &c )
{
    in>>c.name;
    in>>c.phone;
    in>>c.address;
    return in;
}