Eo: Removed EINA_CONST.
[profile/ivi/eobj.git] / src / tests / access / inherit.h
1 #ifndef INHERIT_H
2 #define INHERIT_H
3
4 #include "Eo.h"
5
6 extern EAPI Eo_Op INHERIT_BASE_ID;
7
8 enum {
9      INHERIT_SUB_ID_PROT_PRINT,
10      INHERIT_SUB_ID_LAST
11 };
12
13 #define INHERIT_ID(sub_id) (INHERIT_BASE_ID + sub_id)
14
15 #define inherit_prot_print() INHERIT_ID(INHERIT_SUB_ID_PROT_PRINT)
16
17 #define INHERIT_CLASS inherit_class_get()
18 const Eo_Class *inherit_class_get(void);
19
20 #endif