mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
526 B
C++
29 lines
526 B
C++
12 years ago
|
#ifndef CS_EDITOR_H
|
||
|
#define CS_EDITOR_H
|
||
|
|
||
|
#include "model/doc/documentmanager.hpp"
|
||
|
#include "view/doc/viewmanager.hpp"
|
||
|
|
||
|
namespace CS
|
||
|
{
|
||
|
class Editor
|
||
|
{
|
||
|
CSMDoc::DocumentManager mDocumentManager;
|
||
|
CSVDoc::ViewManager mViewManager;
|
||
|
|
||
|
// not implemented
|
||
|
Editor (const Editor&);
|
||
|
Editor& operator= (const Editor&);
|
||
|
|
||
|
public:
|
||
|
|
||
|
Editor();
|
||
|
|
||
|
void createDocument();
|
||
|
|
||
|
int run();
|
||
|
///< \return error status
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|