File: node.h

package info (click to toggle)
libqxt 0.6.1-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 19,004 kB
  • sloc: cpp: 57,512; xml: 296; sh: 251; makefile: 56; php: 14
file content (25 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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