前言

一直想要形成一定规范的代码风格和格式,故此记录,会随着使用过程中有所修改。

头文件

/*!
********************************************************************************
* @file  header_template.hpp
* @brief template for c++/c header file.
********************************************************************************
* @author        Amy Happy
* @version       1.0.0
* @date          2020.04.29
*
* @customer{     TBD}
* @project{      PROJECTNAME}
* @processor{    imx8}
* @compiler{     g++}
* @copyright     (C) Copyright ABC Technologies Beijing Co., Ltd
*
*                Contents and presentations are protected world-wide.
*                Any kind of using, copying etc. is prohibited without prior permission.
*                All rights - incl. industrial property rights - are reserved.
*
* @starthistory
* @revision{     1.0.0, Amy Happy, Initial version.}
* @endhistory
********************************************************************************
*/

#ifndef PROJECT_PATH_HPP_
#define PROJECT_PATH_HPP_

/*
********************************************************************************
* Includes
********************************************************************************
*/
// related header file.
// c lib.
// cpp lib.
// opencv.
// cereal.
// project header file.

/*
********************************************************************************
* Internal defines
********************************************************************************
*/
/* No Internal defines */

/*
********************************************************************************
* Internal types definition
********************************************************************************
*/
/* No Internal types definition */

/*
********************************************************************************
* Internal variables declaration
********************************************************************************
*/
/* No Internal variables declaration */

/*
********************************************************************************
* Internal routines declaration
********************************************************************************
*/
/* No Internal routines declaration */

/*
********************************************************************************
* External defines
********************************************************************************
*/
/* No External defines */

/*
********************************************************************************
* External types definition
********************************************************************************
*/
/* No External types definition */

/*
********************************************************************************
* External variables declaration
********************************************************************************
*/
/* No External variables declaration */

/*
********************************************************************************
* External routines declaration
********************************************************************************
*/
/* No Internal defines */

#endif  /* PROJECT_PATH_HPP_ */
View Code

相关文章: