From: pjrm Date: Mon, 3 Apr 2006 03:59:35 +0000 (+0000) Subject: new X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fd139947b3dcc6138d2dfa3d94e9e14e191abc00;p=inkscape.git new --- 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 +#include + +/** + * An icc-color specification. Corresponds to the DOM interface of the same name. + * + * Referenced by SPIPaint. + */ +struct SVGICCColor { + std::string colorProfile; + std::vector 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 :