Code

new
authorpjrm <pjrm@users.sourceforge.net>
Mon, 3 Apr 2006 03:59:35 +0000 (03:59 +0000)
committerpjrm <pjrm@users.sourceforge.net>
Mon, 3 Apr 2006 03:59:35 +0000 (03:59 +0000)
src/svg/svg-icc-color.h [new file with mode: 0644]

diff --git a/src/svg/svg-icc-color.h b/src/svg/svg-icc-color.h
new file mode 100644 (file)
index 0000000..25ab4c1
--- /dev/null
@@ -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 :