Added ValueModel, first run.

This commit is contained in:
2025-12-16 22:42:35 +01:00
parent afb5828a65
commit 4c5e42fcfd
8 changed files with 110 additions and 76 deletions

View File

@@ -32,12 +32,16 @@
BCMainWindow::BCMainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::BCMainWindow)
{
ui->setupUi(this);
setupUi(this);
_valueManager.loadXml();
auto model = _valueManager.getModel( "Console"_L1 );
if( model)
_valueView->setModel( *model );
}
BCMainWindow::~BCMainWindow()
{
delete ui;
}