mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-01 02:56:28 +03:00
More DAP WIP.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user