BuildLogViewer/Document.h
author Sebastian Brannstrom <sebastianb@symbian.org>
Mon, 09 Aug 2010 14:37:31 +0100
changeset 20 a7451a8eb5dc
parent 0 bbe0af256f1b
permissions -rwxr-xr-x
Added DB framework for CSV import - doesn't work yet though

#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