summaryrefslogtreecommitdiff
path: root/src/examples/eo/isa/eo_isa_complex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/eo/isa/eo_isa_complex.c')
-rw-r--r--src/examples/eo/isa/eo_isa_complex.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/examples/eo/isa/eo_isa_complex.c b/src/examples/eo/isa/eo_isa_complex.c
deleted file mode 100644
index 12b8784356..0000000000
--- a/src/examples/eo/isa/eo_isa_complex.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include "Eo.h"
-#include "eo_isa_complex.h"
-
-#define MY_CLASS COMPLEX_CLASS
-
-static const Eo_Class_Description class_desc = {
- EO_VERSION,
- "Complex",
- EO_CLASS_TYPE_REGULAR,
- EO_CLASS_DESCRIPTION_NOOPS(),
- NULL,
- 0,
- NULL,
- NULL
-};
-
-EO_DEFINE_CLASS(complex_class_get, &class_desc, SIMPLE_CLASS, NULL);