Commit b571ad66 authored by Лидия Ладыгина's avatar Лидия Ладыгина
Browse files

Delete xmlparser.h

parent 7c4f0fbf
No related merge requests found
Pipeline #1448 canceled with stages
Showing with 0 additions and 32 deletions
+0 -32
#ifndef XMLPARSER_H
#define XMLPARSER_H
#include <QtXml>
#include <QTreeView>
#include <QStandardItemModel>
#include <QStandardItem>
class XmlParser : public QTreeView
{
Q_OBJECT
private: //fields
QStandardItemModel* f_stdItemModel;
QStandardItem *f_parentItem;
QStandardItem *f_techItem;
QList<QStandardItem*> f_rootList;
QStringList f_directoryList;
private: //methods
void traverseNode(const QDomNode& p_dNode, QStandardItem* p_item_ptr);
public: //methods
XmlParser(QWidget* p_parent = 0);
public slots:
void sltLoad();
void sltDropAll();
QList<QStandardItem*>* sltGetRootList();
void sltSetCurrentRoot();
};
#endif // XMLPARSER_H
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment