color-profile.h revision c31e181ce5e5246342f2d0bc052bd340d2f92ebe
#ifndef SEEN_COLOR_PROFILE_H
#define SEEN_COLOR_PROFILE_H
/** \file
* SPColorProfile: SVG <color-profile> implementation
*/
#include <vector>
#include <sp-object.h>
#include "cms-color-types.h"
enum {
};
/// The SPColorProfile vtable.
struct ColorProfileClass {
};
/** Color Profile. */
#if ENABLE_LCMS
//icColorSpaceSignature getColorSpace() const;
ColorSpaceSig getColorSpace() const;
//icProfileClassSignature getProfileClass() const;
ColorProfileClassSig getProfileClass() const;
#endif // ENABLE_LCMS
static Inkscape::XML::Node *write( SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags );
};
} // namespace Inkscape
#define COLORPROFILE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), COLORPROFILE_TYPE, Inkscape::ColorProfile))
#define COLORPROFILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), COLORPROFILE_TYPE, Inkscape::ColorProfileClass))
#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 :