Eobj: Added mixin data support.
[profile/ivi/eobj.git] / examples / mixin / mixin3.h
1 #ifndef MIXIN3_H
2 #define MIXIN3_H
3
4 #include "Eobj.h"
5
6 typedef struct
7 {
8    int count;
9 } Mixin3_Public_Data;
10
11 #define MIXIN3_CLASS mixin3_class_get()
12 const Eobj_Class *mixin3_class_get(void) EINA_CONST;
13
14 #endif