mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 22:23:52 +00:00
26 lines
375 B
C++
26 lines
375 B
C++
|
#ifndef CSV_WORLD_TABLE_H
|
||
|
#define CSV_WORLD_TABLE_H
|
||
|
|
||
|
#include <QTableView>
|
||
|
|
||
|
class QUndoStack;
|
||
|
|
||
|
namespace CSMWorld
|
||
|
{
|
||
|
class Data;
|
||
|
class UniversalId;
|
||
|
}
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
///< Table widget
|
||
|
class Table : public QTableView
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
Table (const CSMWorld::UniversalId& id, CSMWorld::Data& data, QUndoStack& undoStack);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|