mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
21 lines
337 B
C++
21 lines
337 B
C++
|
|
#include "editor.hpp"
|
|
|
|
#include <QtGui/QApplication>
|
|
|
|
CS::Editor::Editor() : mViewManager (mDocumentManager)
|
|
{
|
|
}
|
|
|
|
void CS::Editor::createDocument()
|
|
{
|
|
CSMDoc::Document *document = mDocumentManager.addDocument();
|
|
mViewManager.addView (document);
|
|
}
|
|
|
|
int CS::Editor::run()
|
|
{
|
|
createDocument();
|
|
|
|
return QApplication::exec();
|
|
} |