summaryrefslogtreecommitdiff
path: root/src/benchmarks/eo/class_simple.h
blob: 99f6b80c09702e4c197f7e4efe962d5db89f27f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SIMPLE_H
#define SIMPLE_H

typedef struct
{
   int a;
} Simple_Public_Data;

EAPI void simple_a_set(int a);

#define SIMPLE_CLASS simple_class_get()
const Eo_Class *simple_class_get(void);

#endif