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
|
||||
* Date: todays_date
|
||||
* filename: module_name.h
|
||||
* description: module_purpose
|
||||
/**
|
||||
* @brief PUT_TEXT_HERE
|
||||
* @details This file is...
|
||||
* @author username
|
||||
* @date todays_date
|
||||
* @copyright None
|
||||
* @file module_name.h
|
||||
*/
|
||||
|
||||
#ifndef module_name
|
||||
#define module_name
|
||||
|
||||
|
||||
/**
|
||||
* A function that adds two to a number
|
||||
* @param a The first argument
|
||||
*/
|
||||
int add_two(int a);
|
||||
|
||||
#endif //module_name
|
||||
|
|
Loading…
Reference in New Issue