Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / svg / svg-icc-color.h
1 #ifndef SVG_ICC_COLOR_H_SEEN
2 #define SVG_ICC_COLOR_H_SEEN
4 #include <string>
5 #include <vector>
7 /**
8  * An icc-color specification.  Corresponds to the DOM interface of the same name.
9  *
10  * Referenced by SPIPaint.
11  */
12 struct SVGICCColor {
13     std::string colorProfile;
14     std::vector<double> colors;
15 };
18 #endif /* !SVG_ICC_COLOR_H_SEEN */
20 /*
21   Local Variables:
22   mode:c++
23   c-file-style:"stroustrup"
24   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
25   indent-tabs-mode:nil
26   fill-column:99
27   End:
28 */
29 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :