1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 22:23:52 +00:00
openmw/apps/opencs/view/world/table.hpp

26 lines
375 B
C++
Raw Normal View History

#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