summaryrefslogtreecommitdiffstats
path: root/src/color.h
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2007-09-25 02:54:32 +0000
committerjoncruz <joncruz@users.sourceforge.net>2007-09-25 02:54:32 +0000
commitba9fad5667d32413d00b2b628c305bdb5bd129de (patch)
treeaa0bcfd18d50709f953e7c0d023b2ed3eb0e016d /src/color.h
parentFixed const (diff)
downloadinkscape-ba9fad5667d32413d00b2b628c305bdb5bd129de.tar.gz
inkscape-ba9fad5667d32413d00b2b628c305bdb5bd129de.zip
Initial support for icc color selection including CMYK
(bzr r3794)
Diffstat (limited to 'src/color.h')
-rw-r--r--src/color.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/color.h b/src/color.h
index e93943609..4fcffad8e 100644
--- a/src/color.h
+++ b/src/color.h
@@ -16,6 +16,7 @@
*/
#include <gdk/gdktypes.h>
+#include <string>
/* Useful composition macros */
@@ -55,6 +56,8 @@ struct SPColor {
guint32 toRGBA32( gint alpha ) const;
guint32 toRGBA32( gdouble alpha ) const;
+ std::string toString() const;
+
SVGICCColor* icc;
union {
float c[3];