Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-07-02 17:42:23 +0300
committerbubnikv <bubnikv@gmail.com>2019-07-02 17:42:23 +0300
commit5e846112eee7ff881b2fe5754d3136e152fe3220 (patch)
tree73f37178bf4560b84e05000e42e876448eee941d /src/slic3r/GUI/Selection.hpp
parent27ee68d2f9666f5ad48d5ffacf1d6ea404156dda (diff)
WIP UndoRedo: Added Undo/Redo stack, added Platter::take_snapshot(),
experimental snapshots on loading STLs and increasing / decreasing model instances.
Diffstat (limited to 'src/slic3r/GUI/Selection.hpp')
-rw-r--r--src/slic3r/GUI/Selection.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Selection.hpp b/src/slic3r/GUI/Selection.hpp
index c23f23e6b..17ae72356 100644
--- a/src/slic3r/GUI/Selection.hpp
+++ b/src/slic3r/GUI/Selection.hpp
@@ -3,6 +3,7 @@
#include <set>
#include "libslic3r/Geometry.hpp"
+#include "libslic3r/ObjectID.hpp"
#include "3DScene.hpp"
#if ENABLE_RENDER_SELECTION_CENTER
@@ -66,7 +67,7 @@ private:
Enum m_value;
};
-class Selection
+class Selection : public Slic3r::ObjectBase
{
public:
typedef std::set<unsigned int> IndicesList;