43 lines
722 B
C
43 lines
722 B
C
/**
|
|
* @file lv_demo_widgets_analytics.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_DEMO_WIDGETS_ANALYTICS_H
|
|
#define LV_DEMO_WIDGETS_ANALYTICS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "lv_demo_widgets.h"
|
|
#if LV_USE_DEMO_WIDGETS
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
void lv_demo_widgets_analytics_create(lv_obj_t * parent);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#endif /* LV_USE_DEMO_WIDGETS */
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_DEMO_WIDGETS_ANALYTICS_H*/
|