sp-rect.h revision 32461c0cc717f51ba84908e1eea5b1ee150cf27e
#ifndef __SP_RECT_H__
#define __SP_RECT_H__
/*
* SVG <rect> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "svg/svg-length.h"
#include "sp-shape.h"
#define SP_TYPE_RECT (sp_rect_get_type ())
SVGLength x;
SVGLength y;
};
struct SPRectClass {
};
/* Standard GType function */
GType sp_rect_get_type (void);
/* If SET if FALSE, VALUE is just ignored */
#endif