Sophie

Sophie

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

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

#ifndef CONTACT_H
#define CONTACT_H

#include <QObject>
#include <QMetaType>
#include <QString>
#include <QDataStream>

struct Contact
{
    QString name;
    QString phone;
    QString address;

};
Q_DECLARE_METATYPE(Contact);

QDataStream &operator<<(QDataStream &out,const Contact &c);
QDataStream &operator>>(QDataStream &in, Contact &c );


#endif