More DAP WIP.

This commit is contained in:
Martín Lucas Golini
2024-12-17 22:01:49 -03:00
parent e4ee5f1c09
commit 8b2f178615
10 changed files with 243 additions and 111 deletions

View File

@@ -2,6 +2,18 @@
namespace ecode {
Bus::State Bus::state() const {
return mState;
}
void Bus::setState( State state ) {
if ( state == mState )
return;
mState = state;
onStateChanged( state );
}
void Bus::onStateChanged( State state ) {
}
} // namespace ecode