Loading...
Searching...
No Matches
SnapshotAction.hpp
1#pragma once
2#include <QAction>
3class QGraphicsScene;
4namespace Scenario
5{
6struct SnapshotAction : public QAction
7{
8public:
9 SnapshotAction(QGraphicsScene& scene, QWidget* parent);
10
11private:
12 void takeScreenshot(QGraphicsScene& scene);
13};
14}
Main plug-in of score.
Definition score-plugin-dataflow/Dataflow/PortItem.hpp:13
Definition SnapshotAction.hpp:7