#include "notegraphicsentity.h" NoteGraphicsEntity::NoteGraphicsEntity() : _attached(false) {} void NoteGraphicsEntity::attach() noexcept { _attached = true; } void NoteGraphicsEntity::detach() noexcept { _attached = false; }