forked from mirror/openmw-tes3mp
25 lines
375 B
C++
25 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
|