summaryrefslogtreecommitdiff
path: root/src/tests/eo/constructors/constructors_simple.h
blob: 03f7f4b22cca0d366069ad5e458a7bc80675dfe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SIMPLE_H
#define SIMPLE_H

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

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

#endif