#ifndef ELEMENTHASHTABLE_H #define ELEMENTHASHTABLE_H #include #include #include #include #include #include #include "BasicElementInfo.h" #include "subcontrolarea.h" class ElementHashtable : public QObject { Q_OBJECT public: explicit ElementHashtable(QObject *parent = 0); bool parse(const QString& xmlPath); private: bool child(QXmlStreamReader &reader); QHash eleHT; signals: public slots: }; #endif // ELEMENTHASHTABLE_H