summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeter Moulder <peter.moulder@monash.edu>2006-04-03 03:59:35 +0000
committerpjrm <pjrm@users.sourceforge.net>2006-04-03 03:59:35 +0000
commitb25f793075921f48e986427fb4698239f3091249 (patch)
tree36940bcd924d6fc041315cbe6933bf85e056ed98 /src
parentReducing the minimum required LittleCms version to 1.14, as checked by Scribu... (diff)
downloadinkscape-b25f793075921f48e986427fb4698239f3091249.tar.gz
inkscape-b25f793075921f48e986427fb4698239f3091249.zip
new
(bzr r406)
Diffstat (limited to 'src')
-rw-r--r--src/svg/svg-icc-color.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/svg/svg-icc-color.h b/src/svg/svg-icc-color.h
new file mode 100644
index 000000000..25ab4c1e1
--- /dev/null
+++ b/src/svg/svg-icc-color.h
@@ -0,0 +1,29 @@
+#ifndef SVG_ICC_COLOR_H_SEEN
+#define SVG_ICC_COLOR_H_SEEN
+
+#include <string>
+#include <vector>
+
+/**
+ * An icc-color specification. Corresponds to the DOM interface of the same name.
+ *
+ * Referenced by SPIPaint.
+ */
+struct SVGICCColor {
+ std::string colorProfile;
+ std::vector<double> colors;
+};
+
+
+#endif /* !SVG_ICC_COLOR_H_SEEN */
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :