include QList supplied to see if error arrives like in 'Binder VM' - it does not; simple function defined to see if anyyerror comes up - it does not

This commit is contained in:
Uwe Jakobeit
2026-04-01 17:49:26 +02:00
parent 699fc87bc3
commit 3b9405f029
2 changed files with 9 additions and 2 deletions

View File

@@ -27,3 +27,8 @@ DataModel::DataModel()
Kennfeld_Ueberhitzung = Kennfeld_Ueberhitzung_Default;
}
void* DataModel::CurrentData(void)
{
return nullptr;
}

View File

@@ -11,7 +11,7 @@ Copyright: Binder GmbH TUT
Purpose: Definitions, constants used by the datamodel are collected here
Notes: [Any relevant details, such as dependencies, usage examples, or known issues.]
*/
#include <QList>
#include "dataset.h"
@@ -69,6 +69,8 @@ private:
{1.00, 0.80, 0.60, 0.50, 0.40, 0.35, 0.30, 0.25, 0.20},
{1.00, 0.80, 0.60, 0.50, 0.40, 0.35, 0.30, 0.25, 0.20},
{1.00, 0.80, 0.60, 0.50, 0.40, 0.35, 0.30, 0.25, 0.20}};
void* CurrentData(void);
};