Added CPP template file
This commit is contained in:
parent
f047a88629
commit
593edd59f1
1 changed files with 16 additions and 0 deletions
16
.template_files/modules/module_name.cpp
Normal file
16
.template_files/modules/module_name.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Author: username
|
||||
* Date: todays_date
|
||||
* filename: module_name.cpp
|
||||
* description: module_purpose
|
||||
*/
|
||||
|
||||
#include "module_name.h"
|
||||
|
||||
// dumb test function
|
||||
int add_two(int a)
|
||||
{
|
||||
int b = a;
|
||||
b += 2;
|
||||
return b;
|
||||
}
|
Loading…
Add table
Reference in a new issue