Code

Adding support for <color-profile> element
[inkscape.git] / src / color-profile-fns.h
1 #ifndef SEEN_COLOR_PROFILE_FNS_H
2 #define SEEN_COLOR_PROFILE_FNS_H
4 /** \file 
5  * Macros and fn declarations related to linear gradients.
6  */
8 #include <glib-object.h>
9 #include <glib/gtypes.h>
11 namespace Inkscape {
12 namespace XML {
13 class Node;
14 } // namespace XML
16 class ColorProfile;
18 GType colorprofile_get_type();
20 } // namespace Inkscape
22 #define COLORPROFILE_TYPE (Inkscape::colorprofile_get_type())
23 #define COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), COLORPROFILE_TYPE, Inkscape::ColorProfile))
24 #define COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), COLORPROFILE_TYPE, Inkscape::ColorProfileClass))
25 #define IS_COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), COLORPROFILE_TYPE))
26 #define IS_COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), COLORPROFILE_TYPE))
29 #endif // !SEEN_COLOR_PROFILE_FNS_H
31 /*
32   Local Variables:
33   mode:c++
34   c-file-style:"stroustrup"
35   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
36   indent-tabs-mode:nil
37   fill-column:99
38   End:
39 */
40 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :