summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/array.h
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2010-07-27 19:56:51 +0000
committerJohan Engelen <goejendaagh@zonnet.nl>2010-07-27 19:56:51 +0000
commitafd21a94139c8e747ef048bc64ceea0fc8d3d572 (patch)
tree92a17af43d1859cd257df4e9f8870d761585d89d /src/live_effects/parameter/array.h
parentcommit missing files (diff)
downloadinkscape-afd21a94139c8e747ef048bc64ceea0fc8d3d572.tar.gz
inkscape-afd21a94139c8e747ef048bc64ceea0fc8d3d572.zip
powerstroke: arbitrary number of control points.
(bzr r9659)
Diffstat (limited to 'src/live_effects/parameter/array.h')
-rw-r--r--src/live_effects/parameter/array.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/live_effects/parameter/array.h b/src/live_effects/parameter/array.h
index e5f230111..89c344594 100644
--- a/src/live_effects/parameter/array.h
+++ b/src/live_effects/parameter/array.h
@@ -85,10 +85,7 @@ public:
g_free(str);
}
-private:
- ArrayParam(const ArrayParam&);
- ArrayParam& operator=(const ArrayParam&);
-
+protected:
std::vector<StorageType> _vector;
size_t _default_size;
@@ -103,6 +100,10 @@ private:
}
StorageType readsvg(const gchar * str);
+
+private:
+ ArrayParam(const ArrayParam&);
+ ArrayParam& operator=(const ArrayParam&);
};