mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 13:15:34 +00:00
30 lines
No EOL
492 B
C++
30 lines
No EOL
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 |