sp-mask.h revision 9d24c3279941c5e2e76ac2f0dbd519ddbff24e58
#ifndef __SP_MASK_H__
#define __SP_MASK_H__
/*
* SVG <mask> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2003 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#define SP_TYPE_MASK (sp_mask_get_type ())
#include "display/nr-arena-forward.h"
#include "libnr/nr-forward.h"
#include "sp-object-group.h"
#include "uri-references.h"
unsigned int maskUnits_set : 1;
unsigned int maskUnits : 1;
unsigned int maskContentUnits_set : 1;
unsigned int maskContentUnits : 1;
};
struct SPMaskClass {
};
GType sp_mask_get_type (void);
}
return SP_IS_MASK(obj);
}
};
const gchar *sp_mask_create (GSList *reprs, SPDocument *document, Geom::Matrix const* applyTransform);
#endif