Files
eepp/src/tools/ecode/plugins/debugger/bus.cpp
Martín Lucas Golini 8b2f178615 More DAP WIP.
2024-12-17 22:01:49 -03:00

20 lines
272 B
C++

#include "bus.hpp"
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