summaryrefslogtreecommitdiff
path: root/src/tests/eo/interface/interface_simple.h
blob: 23dd21c610fe854fe350641456e398ca8553ad5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SIMPLE_H
#define SIMPLE_H

void simple_a_set(Eo *obj, int a);
int simple_a_get(Eo *obj);
void simple_b_set(Eo *obj, int b);
int simple_b_get(Eo *obj);

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

#endif