summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b3915c5)
raw | patch | inline | side by side (parent: b3915c5)
author | pjrm <pjrm@users.sourceforge.net> | |
Mon, 3 Apr 2006 03:59:35 +0000 (03:59 +0000) | ||
committer | pjrm <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] | patch | blob |
diff --git a/src/svg/svg-icc-color.h b/src/svg/svg-icc-color.h
--- /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 :