1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 09:36:37 +00:00
OpenMW/apps/opencs/view/world/tablesubview.hpp

25 lines
452 B
C++
Raw Normal View History

#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