You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
327 B
C++

#include "classicnote.h"
ClassicNote::ClassicNote(NoteInitializer &&init) :
Note(init.perfect_offset),
_state(State::NONE),
_context(init.context)
{}
void ClassicNote::setState(ClassicNote::State state) noexcept
{
_state = state;
}
auto ClassicNote::getState() const noexcept -> State
{
return _state;
}