Vuo 2.4.4
Loading...
Searching...
No Matches
VuoCommandAdd.hh
Go to the documentation of this file.
1
10#pragma once
11
12#include "VuoCommandCommon.hh"
13
14class VuoEditorWindow;
15
20{
21public:
22 VuoCommandAdd(QList<QGraphicsItem *> addedComponents, VuoEditorWindow *window, string commandDescription="Add", bool disableAttachmentInsertion=false);
23
24 int id() const;
25 void undo();
26 void redo();
27
28private:
29 static const int commandID;
30 VuoEditorWindow *window;
31 string revertedSnapshot;
32 string updatedSnapshot;
33
34 bool operationInvolvesGenericPort;
35 bool operationRequiresRunningCompositionUpdate;
36};