1 #include "debugobserver.h"
4 DebugObserver::DebugObserver()
8 DebugObserver::~DebugObserver()
12 void DebugObserver::noteAdded(
const Note ¬e)
14 LOG(
"Note " << std::hex << (
unsigned int)note.getPitch() <<
" added with "
15 "velocity " << std::hex << (
unsigned int)note.getVelocity());
18 void DebugObserver::noteRemoved(
const Note ¬e)
20 LOG(
"Note " << std::hex << (
unsigned int)note.getPitch() <<
" removed");
23 void DebugObserver::notify(
const PNoteObservable &&subject)