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