1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/opencs/editor.hpp
2012-11-22 13:30:02 +01:00

29 lines
526 B
C++

#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