diff --git a/xmlparser.h b/xmlparser.h deleted file mode 100644 index d654d10c7bedcae4fc1cc57ef4a95e3584dfc3e2..0000000000000000000000000000000000000000 --- a/xmlparser.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef XMLPARSER_H -#define XMLPARSER_H - -#include -#include -#include -#include - -class XmlParser : public QTreeView -{ - Q_OBJECT - -private: //fields - QStandardItemModel* f_stdItemModel; - QStandardItem *f_parentItem; - QStandardItem *f_techItem; - QList 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* sltGetRootList(); - void sltSetCurrentRoot(); -}; - -#endif // XMLPARSER_H