// C/C++ header file structure
#ifndef HEADER_FILE_NAME_XXX_H
#define HEADER_FILE_NAME_XXX_H
/***************************************************************************
* include thirdparty API
***************************************************************************/
/***************************************************************************
* type declaration/alias
***************************************************************************/
/***************************************************************************
* macro define
***************************************************************************/
/***************************************************************************
* type definition
***************************************************************************/
/***************************************************************************
* global variable declaration
***************************************************************************/
/***************************************************************************
* function declaration (including inline and template function)
***************************************************************************/
#endif
C/C++ header file structure
于 2024-06-26 17:14:12 首次发布