Added & configured actions.

This commit is contained in:
2025-12-26 23:09:53 +01:00
parent 71d7350913
commit c4714bfca2
9 changed files with 159 additions and 105 deletions

View File

@@ -53,9 +53,8 @@ public:
explicit BCValueModel(QObject *parent = nullptr);
void addValue(const BCDataValue& val);
//void setValueList(BCValueList* valueList);
//BCValueList *getValueList();
void setValueList(const BCValueList& valueList);
const BCValueList& getValueList();
// Pure Virtual Functions von QAbstractTableModel
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
@@ -70,6 +69,7 @@ public:
private:
// Die eigentlichen Werte wohnen im tatsächlich hier, im Model.
BCValueList _valueList;
};