Skip to content
Snippets Groups Projects
Commit baf227a7 authored by anjoer's avatar anjoer
Browse files

Added States

parent 89680f46
No related branches found
No related tags found
No related merge requests found
#include "PStateWait.h"
PStateWait::PStateWait(BioTracker3Player *player, IModel *textureObject,
std::shared_ptr<BioTracker::Core::BioTracker3ImageStream> imageStream) :
IPlayerState(player, textureObject, imageStream) {
}
void PStateWait::operate() {
Q_EMIT emitOperationDone();
}
#ifndef PSTATEWAIT_H
#define PSTATEWAIT_H
#include "Interfaces/IPlayerState.h"
class PStateWait : public IPlayerState {
public:
PStateWait(BioTracker3Player *player, IModel *textureObject,
std::shared_ptr<BioTracker::Core::BioTracker3ImageStream> imageStream);
// IPlayerState interface
public Q_SLOTS:
void operate() override;
};
#endif // PSTATEWAIT_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment