1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 10:23:56 +00:00
openmw/apps/opencs/editor.hpp
2012-11-22 13:30:02 +01:00

29 lines
No EOL
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