Continued ripping up the source.
[aesalon.git] / monitor / src / ptrace / MallocObserver.h
blob0e8be2436e2dd2fe54f2022bdefa1730aeca47a8
1 #ifndef AESALON_MONITOR_PTRACE_MALLOC_OBSERVER_H
2 #define AESALON_MONITOR_PTRACE_MALLOC_OBSERVER_H
4 #include <set>
6 #include "BreakpointObserver.h"
8 namespace Aesalon {
9 namespace Monitor {
10 namespace PTrace {
12 class MallocObserver : public BreakpointObserver {
13 public:
14 virtual void handle_breakpoint(const BreakpointReference &breakpoint);
17 } // namespace PTrace
18 } // namespace Monitor
19 } // namespace Aesalon
21 #endif