1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 03:40:14 +00:00
2012-11-22 13:30:02 +01:00

30 lines
492 B
C++

#ifndef CSV_DOC_VIEW_H
#define CSV_DOC_VIEW_H
#include <QWidget>
namespace CSMDoc
{
class Document;
}
namespace CSVDoc
{
class View : public QWidget
{
Q_OBJECT
CSMDoc::Document *mDocument;
// not implemented
View (const View&);
View& operator= (const View&);
public:
View (CSMDoc::Document *document);
///< The ownership of \a document is not transferred to *this.
};
}
#endif