16 lines
241 B
C++
16 lines
241 B
C++
|
#include "notegraphicsentity.h"
|
||
|
|
||
|
NoteGraphicsEntity::NoteGraphicsEntity() :
|
||
|
_attached(false)
|
||
|
{}
|
||
|
|
||
|
void NoteGraphicsEntity::attach() noexcept
|
||
|
{
|
||
|
_attached = true;
|
||
|
}
|
||
|
|
||
|
void NoteGraphicsEntity::detach() noexcept
|
||
|
{
|
||
|
_attached = false;
|
||
|
}
|