Continued ripping up the source.
[aesalon.git] / monitor / src / ptrace / MainObserver.cpp
blob0dd8970c072a18164597d66e842b6e4396b916dd
1 #include "MainObserver.h"
2 #include "Initializer.h"
3 #include "BreakpointReference.h"
5 namespace Aesalon {
6 namespace Monitor {
7 namespace PTrace {
9 void MainObserver::handle_breakpoint(const BreakpointReference &breakpoint) {
10 Initializer::get_instance()->get_program_manager()->place_initial_breakpoints();
11 breakpoint->remove_observer(this);
14 } // namespace PTrace
15 } // namespace Monitor
16 } // namespace Aesalon