1 /**
2  * @file lv_examples.h
3  *
4  */
5 
6 #ifndef LV_EXAMPLES_H
7 #define LV_EXAMPLES_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "../lvgl.h"
17 
18 #include "styles/lv_example_style.h"
19 #include "get_started/lv_example_get_started.h"
20 #include "widgets/lv_example_widgets.h"
21 #include "layouts/lv_example_layout.h"
22 #include "scroll/lv_example_scroll.h"
23 #include "anim/lv_example_anim.h"
24 #include "event/lv_example_event.h"
25 #include "styles/lv_example_style.h"
26 #include "others/lv_example_others.h"
27 #include "libs/lv_example_libs.h"
28 
29 /*********************
30  *      DEFINES
31  *********************/
32 
33 /**********************
34  *      TYPEDEFS
35  **********************/
36 
37 /**********************
38  * GLOBAL PROTOTYPES
39  **********************/
40 
41 /**********************
42  *      MACROS
43  **********************/
44 
45 #ifdef __cplusplus
46 } /*extern "C"*/
47 #endif
48 
49 #endif /*LV_EXAMPLES_H*/
50