Add design prototype, some renamings.

This commit is contained in:
2025-12-22 21:27:20 +01:00
parent 4bd8f30a09
commit 03381ea705
20 changed files with 1219 additions and 159 deletions

View File

@@ -50,7 +50,7 @@ void BCTransmitter::onToggleConnectionState( bool connect )
}
void BCTransmitter::enqueueValueOp(BC::OpID opID, const BCValue* value)
void BCTransmitter::enqueueValueOp(BC::OpID opID, const BCData* value)
{
QMutexLocker locker(&_mutex);
_valueQueue.enqueue( value );
@@ -83,7 +83,7 @@ void BCTransmitter::processValueOp( BC::OpID opID )
while (true)
{
const BCValue* currentValue{};
const BCData* currentValue{};
{
QMutexLocker locker(&_mutex);
if (_valueQueue.isEmpty())