Sophie

Sophie

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

libqxt-devel-0.6.1-3.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;
}