Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
PStateStepBack.h 764 B
/****************************************************************************
 **
 ** This file is part of the BioTracker Framework
 ** by Andreas Jörg
 **
 ****************************************************************************/

#ifndef PSTATESTEPBACK_H
#define PSTATESTEPBACK_H

#include "IStates/IPlayerState.h"

/**
 * This state will active if the user clicks on the Back button in the GUI. The
 * following state will be STATE_WAIT.
 */
class PStateStepBack : public IPlayerState
{
public:
    PStateStepBack(MediaPlayerStateMachine*                       player,
                   std::shared_ptr<BioTracker::Core::ImageStream> imageStream);

    // IPlayerState interface
public Q_SLOTS:
    void operate() override;
};

#endif // PSTATESTEPBACK_H