sp-glyph-kerning.h revision 58cf085f4a4de3c49fe270636169643d55db17f9
#ifndef __SP_GLYPH_KERNING_H__
#define __SP_GLYPH_KERNING_H__
/*
* SVG <hkern> and <vkern> elements implementation
*
* Authors:
* Felipe C. da S. Sanches <felipe.sanches@gmail.com>
*
* Copyright (C) 2008 Felipe C. da S. Sanches
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-object.h"
#define SP_TYPE_GLYPH_KERNING (sp_glyph_kerning_get_type ())
#define SP_GLYPH_KERNING(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_GLYPH_KERNING, SPGlyphKerning))
#define SP_GLYPH_KERNING_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_GLYPH_KERNING, SPGlyphKerningClass))
char* u1;
char* g1;
char* u2;
char* g2;
double k;
};
struct SPGlyphKerningClass {
};
GType sp_glyph_kerning_get_type (void);
#endif //#ifndef __SP_GLYPH_KERNING_H__