1 #ifndef SEEN_COLOR_PROFILE_H
2 #define SEEN_COLOR_PROFILE_H
4 /** \file
5 * SPColorProfile: SVG <color-profile> implementation
6 */
8 #include <glib/gtypes.h>
9 #include <sp-object.h>
10 #include "color-profile-fns.h"
11 #if ENABLE_LCMS
12 #include <lcms.h>
13 #endif // ENABLE_LCMS
15 namespace Inkscape {
17 /** Color Profile. */
18 struct ColorProfile : public SPObject {
19 gchar* href;
20 gchar* local;
21 gchar* name;
22 guint rendering_intent;
23 #if ENABLE_LCMS
24 cmsHPROFILE profHandle;
25 #endif // ENABLE_LCMS
26 };
28 /// The SPColorProfile vtable.
29 struct ColorProfileClass {
30 SPObjectClass parent_class;
31 };
33 } // namespace Inkscape
35 #endif // !SEEN_COLOR_PROFILE_H
37 /*
38 Local Variables:
39 mode:c++
40 c-file-style:"stroustrup"
41 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
42 indent-tabs-mode:nil
43 fill-column:99
44 End:
45 */
46 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :