sp-animation.cpp revision 09ba3247163582bf2e30e17c4c154aa259ce038a
#define __SP_ANIMATION_C__
/** \file
* SVG <animate> implementation.
*
* N.B. This file is currently just a stub file with no meaningful 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-animation.h"
#if 0
/* Feel free to remove this function and its calls. */
static void
{
if (value) {
} else {
}
}
#else
#endif
/* Animation base class */
static SPObjectClass *animation_parent_class;
sp_animation_get_type(void)
{
static GType animation_type = 0;
if (!animation_type) {
sizeof(SPAnimationClass),
sizeof(SPAnimation),
16,
NULL, /* value_table */
};
animation_type = g_type_register_static(SP_TYPE_OBJECT, "SPAnimation", &animation_info, (GTypeFlags)0);
}
return animation_type;
}
static void
{
//GObjectClass *gobject_class = (GObjectClass *) klass;
}
static void
{
}
static void
{
}
static void
{
}
static void
{
//SPAnimation *animation = SP_ANIMATION(object);
}
/* Interpolated animation base class */
static SPObjectClass *ianimation_parent_class;
sp_ianimation_get_type(void)
{
if (!type) {
sizeof(SPIAnimationClass),
sizeof(SPIAnimation),
16,
NULL, /* value_table */
};
}
return type;
}
static void
{
//GObjectClass *gobject_class = (GObjectClass *) klass;
}
static void
{
}
static void
{
}
static void
{
}
static void
{
//SPIAnimation *ianimation = SP_IANIMATION(object);
}
/* SVG <animate> */
static SPIAnimationClass *animate_parent_class;
sp_animate_get_type(void)
{
if (!type) {
sizeof(SPAnimateClass),
sizeof(SPAnimate),
16,
NULL, /* value_table */
};
}
return type;
}
static void
{
//GObjectClass *gobject_class = (GObjectClass *) klass;
}
static void
{
}
static void
{
}
static void
{
}
static void
{
//SPAnimate *animate = SP_ANIMATE(object);
}
/*
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:encoding=utf-8:textwidth=99 :