eolian: update docs on implements

This commit is contained in:
Daniel Kolesa 2014-09-05 12:01:37 +01:00
parent dff8d56475
commit 00192bd15e
1 changed files with 6 additions and 1 deletions

View File

@ -1032,11 +1032,16 @@ EAPI Eina_Bool eolian_implement_is_prop_get(const Eolian_Implement *impl);
EAPI Eina_Bool eolian_implement_is_prop_set(const Eolian_Implement *impl);
/*
* @brief Get an iterator to the overriding functions defined in a class.
* @brief Get an iterator to implements of a class.
*
* @param[in] klass the class.
* @return the iterator
*
* Implements include fields specified in the "implements" section of your Eo
* file (i.e. overriding and virtual/auto/empty functions) and all other
* methods/properties of your class (local only) that are not specified
* within that section.
*
* @ingroup Eolian
*/
EAPI Eina_Iterator *eolian_class_implements_get(const Eolian_Class *klass);