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