author | Sebastian Brannstrom <sebastianb@symbian.org> |
Mon, 23 Aug 2010 17:07:32 +0100 | |
changeset 37 | 1ced6e446fd4 |
parent 0 | bbe0af256f1b |
permissions | -rwxr-xr-x |
#ifndef DOCUMENT_H #define DOCUMENT_H #include <QCloseEvent> #include <QString> #include <QtGui/QTreeView> #include <QtGui/QWidget> #include <QtXml/QDomDocument> #include "DomModel.h" class Document : public QTreeView { Q_OBJECT public: Document(QWidget *parent,QString); private: DomModel *model; }; #endif // DOCUMENT_H