1 #ifndef _ELM_CALENDAR_ITEM_EO_H_
2 #define _ELM_CALENDAR_ITEM_EO_H_
3 
4 #ifndef _ELM_CALENDAR_ITEM_EO_CLASS_TYPE
5 #define _ELM_CALENDAR_ITEM_EO_CLASS_TYPE
6 
7 typedef Eo Elm_Calendar_Item;
8 
9 #endif
10 
11 #ifndef _ELM_CALENDAR_ITEM_EO_TYPES
12 #define _ELM_CALENDAR_ITEM_EO_TYPES
13 
14 
15 #endif
16 /** Elm Calendar Item class
17  *
18  * @ingroup Elm_Calendar_Item
19  */
20 #define ELM_CALENDAR_ITEM_CLASS elm_calendar_item_class_get()
21 
22 EWAPI const Efl_Class *elm_calendar_item_class_get(void) EINA_CONST;
23 
24 /**
25  * @brief Day number property
26  *
27  * @param[in] obj The object.
28  * @param[in] i Day number
29  *
30  * @ingroup Elm_Calendar_Item
31  */
32 EOAPI void elm_calendar_item_day_number_set(Eo *obj, int i);
33 
34 /**
35  * @brief Day number property
36  *
37  * @param[in] obj The object.
38  *
39  * @return Day number
40  *
41  * @ingroup Elm_Calendar_Item
42  */
43 EOAPI int elm_calendar_item_day_number_get(const Eo *obj);
44 
45 #endif
46