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.

15 lines
383 B
C++

#ifndef CLASSICNOTENONESTATE_H
#define CLASSICNOTENONESTATE_H
#include "classicnotestate.h"
class ClassicNoteNoneState : public ClassicNoteState
{
public:
virtual Value value() const override;
virtual Value update(const ClassicNote* note, const microsec& offset) override;
virtual void onEntering(const ClassicNote* note) override;
};
#endif // CLASSICNOTENONESTATE_H