mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
28 lines
460 B
C++
28 lines
460 B
C++
#ifndef CSV_WORLD_REGIONMAPSUBVIEW_H
|
|
#define CSV_WORLD_REGIONMAPSUBVIEW_H
|
|
|
|
#include "../doc/subview.hpp"
|
|
|
|
class QTableView;
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class RegionMapSubView : public CSVDoc::SubView
|
|
{
|
|
QTableView *mTable;
|
|
|
|
public:
|
|
|
|
RegionMapSubView (CSMWorld::UniversalId universalId, CSMDoc::Document& document);
|
|
|
|
virtual void setEditLock (bool locked);
|
|
};
|
|
}
|
|
|
|
#endif
|