From: Fletcher T. Penney Date: Thu, 12 Nov 2015 15:39:56 +0000 (-0500) Subject: update source templates to improve doxygen support X-Git-Tag: 0.1.0a~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=285dd030a0e2b9e63168dcadcca569d7b74869fd;p=multimarkdown update source templates to improve doxygen support --- diff --git a/templates/template.c.in b/templates/template.c.in index d11d1e6..6fbe49e 100644 --- a/templates/template.c.in +++ b/templates/template.c.in @@ -1,6 +1,18 @@ -/* +/** + + @My_Project_Title@ + + @file file.c + + @brief @My_Project_Description@ + - file.c -- @My_Project_Title@ + @author @My_Project_Author@ + @bug + +**/ + +/* @My_Project_Copyright@ @@ -9,6 +21,7 @@ */ + #include "file.h" int void_function(void) { diff --git a/templates/template.h.in b/templates/template.h.in index 8d476ff..fc91c85 100644 --- a/templates/template.h.in +++ b/templates/template.h.in @@ -1,21 +1,25 @@ -/* +/** - file.h -- @My_Project_Title@ + @My_Project_Title@ - @My_Project_Copyright@ + @file file.h + @brief @My_Project_Description@ - @My_Project_License_Indent@ -*/ + @author @My_Project_Author@ + @bug -/** +**/ -@file +/* + + @My_Project_Copyright@ -@brief @My_Project_Description@ -**/ + @My_Project_License_Indent@ + +*/ #ifndef FILE_@My_Project_Title_Caps@_H