Sophie

Sophie

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

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