mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +00:00
25 lines
452 B
C++
25 lines
452 B
C++
|
#ifndef CSV_WORLD_TABLESUBVIEW_H
|
||
|
#define CSV_WORLD_TABLESUBVIEW_H
|
||
|
|
||
|
#include "subview.hpp"
|
||
|
|
||
|
class QUndoStack;
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class Table;
|
||
|
|
||
|
class TableSubView : public SubView
|
||
|
{
|
||
|
Table *mTable;
|
||
|
|
||
|
public:
|
||
|
|
||
|
TableSubView (const CSMWorld::UniversalId& id, CSMWorld::Data& data, QUndoStack& undoStack,
|
||
|
bool createAndDelete);
|
||
|
|
||
|
virtual void setEditLock (bool locked);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|