summaryrefslogtreecommitdiffstats
path: root/src/display
diff options
context:
space:
mode:
Diffstat (limited to 'src/display')
-rw-r--r--src/display/curve.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/display/curve.h b/src/display/curve.h
index e9c58e610..c6ddb4cb8 100644
--- a/src/display/curve.h
+++ b/src/display/curve.h
@@ -32,6 +32,10 @@ public:
virtual ~SPCurve();
+ // Don't implement these:
+ SPCurve(const SPCurve&) = delete;
+ SPCurve& operator=(const SPCurve&) = delete;
+
void set_pathvector(Geom::PathVector const & new_pathv);
Geom::PathVector const & get_pathvector() const;
@@ -86,11 +90,6 @@ protected:
size_t _refcount;
Geom::PathVector _pathv;
-
-private:
- // Don't implement these:
- SPCurve(const SPCurve&) = delete;
- SPCurve& operator=(const SPCurve&) = delete;
};
#endif // !SEEN_DISPLAY_CURVE_H