You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
651 B
38 lines
651 B
9 years ago
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
/**
|
||
|
* \file xmlparser.h
|
||
|
* \version v1.0
|
||
|
* \author Ing. Dominik Malcik
|
||
|
*/
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef XMLPARSER_H
|
||
|
#define XMLPARSER_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
#include <QtXml/QDomDocument>
|
||
|
#include <QMessageBox>
|
||
|
#include <vector>
|
||
|
|
||
|
// singleton
|
||
|
#include "project.h"
|
||
|
|
||
|
class XMLparser : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit XMLparser(QWidget *parent = 0);
|
||
|
bool read(QIODevice *file);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
private:
|
||
|
QDomDocument domDocument;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // XMLPARSER_H
|