generated from TDD-Templates/cmake_cpputest_template
Updated the template header file to use a doxygen top comment.
This commit is contained in:
parent
ed7b299a5e
commit
fd261b27c6
|
@ -1,14 +1,20 @@
|
||||||
/*
|
/**
|
||||||
* Author: username
|
* @brief PUT_TEXT_HERE
|
||||||
* Date: todays_date
|
* @details This file is...
|
||||||
* filename: module_name.h
|
* @author username
|
||||||
* description: module_purpose
|
* @date todays_date
|
||||||
|
* @copyright None
|
||||||
|
* @file module_name.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef module_name
|
#ifndef module_name
|
||||||
#define module_name
|
#define module_name
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A function that adds two to a number
|
||||||
|
* @param a The first argument
|
||||||
|
*/
|
||||||
int add_two(int a);
|
int add_two(int a);
|
||||||
|
|
||||||
#endif //module_name
|
#endif //module_name
|
||||||
|
|
Loading…
Reference in New Issue