Files
eepp/src/tools/ecode/plugins/debugger/bus.cpp
Martín Lucas Golini 4e9a47876a Finish input support for launch.json file.
More fixes.
2025-01-17 00:47:12 -03:00

20 lines
266 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 ) {
}
} // namespace ecode