| 22 | } // anonymous namespace |
| 23 | |
| 24 | ArrayGroupModel::ArrayGroupModel(vtkCellGrid* data, vtkStringToken groupName, QObject* parent) |
| 25 | : QAbstractTableModel(parent) |
| 26 | , Data(data) |
| 27 | { |
| 28 | this->Data->Register(nullptr); |
| 29 | if (this->Data) |
| 30 | { |
| 31 | this->setGroupName(groupName, false); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | ArrayGroupModel::~ArrayGroupModel() |
| 36 | { |
nothing calls this directly
no test coverage detected