efl/src/tests/eo/function_overrides/function_overrides_inherit.c

23 lines
447 B
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Eo.h"
#include "function_overrides_simple.h"
#include "function_overrides_inherit.h"
#define MY_CLASS INHERIT_CLASS
static const Eo_Class_Description class_desc = {
EO_VERSION,
"Inherit",
EO_CLASS_TYPE_REGULAR,
EO_CLASS_DESCRIPTION_OPS(NULL, NULL, 0),
NULL,
0,
NULL,
NULL
};
EO_DEFINE_CLASS(inherit_class_get, &class_desc, SIMPLE_CLASS, NULL);