Added a ModelItem class to hold the data for each row.
This commit is contained in:
@ -72,7 +72,10 @@ void GenericCore::triggerApplicationUpdate() {
|
||||
|
||||
std::shared_ptr<QAbstractItemModel> GenericCore::getModel() const { return m_mainModel; }
|
||||
|
||||
void GenericCore::setupModels() { m_mainModel = make_shared<TableModel>(this); }
|
||||
void GenericCore::setupModels() {
|
||||
m_mainModel = make_shared<TableModel>(this);
|
||||
// TODO add QAbstractItemModelTester
|
||||
}
|
||||
|
||||
QString GenericCore::getMaintenanceToolFilePath() const {
|
||||
QString applicationDirPath = QCoreApplication::applicationDirPath();
|
||||
|
||||
Reference in New Issue
Block a user