2021-02-08 09:53:03 +01:00
|
|
|
/**
|
2021-02-19 18:19:32 +01:00
|
|
|
* @file lv_example_layout.h
|
2021-02-08 09:53:03 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-02-19 18:19:32 +01:00
|
|
|
#ifndef LV_EXAMPLE_LAYOUT_H
|
|
|
|
#define LV_EXAMPLE_LAYOUT_H
|
2021-02-08 09:53:03 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2021-02-19 18:19:32 +01:00
|
|
|
#include "flex/lv_example_flex.h"
|
|
|
|
#include "grid/lv_example_grid.h"
|
2021-02-08 09:53:03 +01:00
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2021-03-15 02:03:27 +08:00
|
|
|
} /*extern "C"*/
|
2021-02-08 09:53:03 +01:00
|
|
|
#endif
|
|
|
|
|
2021-02-19 18:19:32 +01:00
|
|
|
#endif /*LV_EXAMPLE_LAYOUT_H*/
|