BuildLogViewer/Document.h
author Sebastian Brannstrom <sebastianb@symbian.org>
Tue, 10 Aug 2010 19:10:57 +0100
changeset 22 d5911f90500d
parent 0 bbe0af256f1b
permissions -rwxr-xr-x
Added the missing database.h

#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