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