20 lines
362 B
C++
20 lines
362 B
C++
#ifndef BASICELEMENTINFO_H
|
|
#define BASICELEMENTINFO_H
|
|
|
|
#include <QString>
|
|
#include <QStringRef>
|
|
#include <QXmlStreamReader>
|
|
#include <QDebug>
|
|
class BasicElementInfo{
|
|
protected:
|
|
bool parseBasicInfo(QXmlStreamReader &reader);
|
|
QStringRef name;
|
|
QStringRef id;
|
|
QString nextLinkString;
|
|
QString prevousLinkString;
|
|
};
|
|
|
|
|
|
|
|
#endif // BASICELEMENTINFO_H
|