Create and rework data handling, part I

This commit is contained in:
2025-12-21 10:30:39 +01:00
parent f83f351d99
commit c382ba472d
12 changed files with 1540 additions and 25 deletions

View File

@@ -82,13 +82,13 @@ public:
virtual BCCanDriver::dState loadDriver() = 0;
virtual BCCanDriver::dState initDriver() = 0;
virtual uint getValue( BCDevice::ID dev, BC::ID reg ) = 0;
virtual void setValue( BCDevice::ID dev, BC::ID reg, int value ) = 0;
virtual uint getValue( BCDevice::ID dev, BC::ID reg ) const = 0;
virtual void setValue( BCDevice::ID dev, BC::ID reg, int value ) const = 0;
signals:
void errorOccured( const QString& errMsg );
void statusHint( const QString& msg );
void statusHint( const QString& msg ) const;
void stateChanged( int state );
void itemReady( const QString& label );