fomatting of headers -> fixup. and documentation fixing.
[framework/uifw/elementary.git] / src / lib / elm_debug.h
1 /**
2  * @defgroup Debug Debug
3  * don't use it unless you are sure
4  *
5  * @{
6  */
7
8 /**
9  * Print Tree object hierarchy in stdout
10  *
11  * @param obj The root object
12  * @ingroup Debug
13  */
14 EAPI void elm_object_tree_dump(const Evas_Object *top);
15
16 /**
17  * Print Elm Objects tree hierarchy in file as dot(graphviz) syntax.
18  *
19  * @param obj The root object
20  * @param file The path of output file
21  * @ingroup Debug
22  */
23 EAPI void elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
24
25 /**
26  * @}
27  */