efl/src/tests/eolian/data/class_simple_ref_eo.h

70 lines
1.1 KiB
C

#ifndef _EOLIAN_OUTPUT_H_
#define _EOLIAN_OUTPUT_H_
#ifndef _CLASS_SIMPLE_EO_CLASS_TYPE
#define _CLASS_SIMPLE_EO_CLASS_TYPE
typedef Eo Class_Simple;
#endif
#ifndef _CLASS_SIMPLE_EO_TYPES
#define _CLASS_SIMPLE_EO_TYPES
#endif
/** Class Desc Simple
*
* @ingroup Class_Simple
*/
#define CLASS_SIMPLE_CLASS class_simple_class_get()
EWAPI const Eo_Class *class_simple_class_get(void);
#ifdef CLASS_SIMPLE_BETA
/**
* @brief Common desc for a
*
* comment a.set
*
* @param[in] value Value description
*
* @return comment for property set return
*
* @ingroup Class_Simple
*/
EOAPI Eina_Bool evas_obj_simple_a_set(Eo *obj, int value);
#endif
#ifdef CLASS_SIMPLE_BETA
/**
* @brief Common desc for a
*
* @return Value description
*
* @ingroup Class_Simple
*/
EOAPI int evas_obj_simple_a_get(const Eo *obj);
#endif
EOAPI void evas_obj_simple_b_set(Eo *obj);
#ifdef CLASS_SIMPLE_BETA
/**
* @brief comment foo
*
* @param[in,out] b
* @param[out] c
*
* @return comment for method return
*
* @ingroup Class_Simple
*/
EOAPI char *evas_obj_simple_foo(Eo *obj, int a, char *b, double *c);
#endif
EOAPI int evas_obj_simple_bar(Eo *obj, int x);
#endif