color-profile.h revision d985b4274377399600a1cb4b6a89c0827ba83966
#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
static cmsHPROFILE getSRGBProfile();
#endif // ENABLE_LCMS
#if ENABLE_LCMS
#endif // ENABLE_LCMS
#if ENABLE_LCMS
void _clearProfile();
static cmsHPROFILE _sRGBProf;
#endif // ENABLE_LCMS
};
} // 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:encoding=utf-8:textwidth=99 :