Sophie

Sophie

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

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

#ifndef NODE_H_INCLUDED
#define NODE_H_INCLUDED

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

struct XmlNode
{
    QString name;
    QString value;
    int type;
};
Q_DECLARE_METATYPE(XmlNode);

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

QDebug operator<<(QDebug dbg, const XmlNode &c);


#endif // NODE_H_INCLUDED