1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 04:36:42 +00:00
openmw-tes3mp/apps/opencs/view/doc/viewmanager.hpp
2012-11-22 13:30:02 +01:00

38 lines
No EOL
584 B
C++

#ifndef CSV_DOC_VIEWMANAGER_H
#define CSV_DOC_VIEWMANAGER_H
#include <vector>
namespace CSMDoc
{
class Document;
}
namespace CSVDoc
{
class View;
class ViewManager
{
std::vector<View *> mViews;
// not implemented
ViewManager (const ViewManager&);
ViewManager& operator= (const ViewManager&);
public:
ViewManager();
~ViewManager();
View *addView (CSMDoc::Document *document);
///< The ownership of the returned view is not transferred.
};
}
#endif