1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 13:15:34 +00:00
openmw/apps/opencs/view/doc/view.hpp
2012-11-22 13:30:02 +01:00

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