color-profile.h revision 00f7468e6760929095a0da8a3e685082813f77f7
#ifndef SEEN_COLOR_PROFILE_H
#define SEEN_COLOR_PROFILE_H
/** \file
* SPColorProfile: SVG <color-profile> implementation
*/
#include <sp-object.h>
#if ENABLE_LCMS
#include <lcms.h>
#endif // ENABLE_LCMS
enum {
};
/// The SPColorProfile vtable.
struct ColorProfileClass {
};
/** Color Profile. */
#if ENABLE_LCMS
icColorSpaceSignature getColorSpace() const;
icProfileClassSignature getProfileClass() const;
#endif // ENABLE_LCMS
static Inkscape::XML::Node *write( SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags );
};
} // namespace Inkscape
#endif // !SEEN_COLOR_PROFILE_H
/*
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:fileencoding=utf-8:textwidth=99 :