sp-animation.h revision 6b15695578f07a3f72c4c9475c1a261a3021472a
#ifndef __SP_ANIMATION_H__
#define __SP_ANIMATION_H__
/*
* SVG <animate> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2002 Lauris Kaplinski
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-object.h"
/* Animation base class */
#define SP_TYPE_ANIMATION (sp_animation_get_type ())
};
struct SPAnimationClass {
};
GType sp_animation_get_type (void);
/* Interpolated animation base class */
#define SP_TYPE_IANIMATION (sp_ianimation_get_type ())
};
struct SPIAnimationClass {
};
GType sp_ianimation_get_type (void);
/* SVG <animate> */
#define SP_TYPE_ANIMATE (sp_animate_get_type ())
};
struct SPAnimateClass {
};
GType sp_animate_get_type (void);
#endif