QT中自定义注释模板

本文最后更新于:2022年5月29日 上午

配置QtCreator,自动生成自定义的注释模板。

打开Qt Creator,选择“Tools”->“Options”,再次选择“Text Editor”->“Snippets”->“Add”,如下图:

image-20210317105020604

然后在文本框中填写如下****文件头注释模板****(日期和文件名可自动生成)。

1
2
3
4
5
6
7
/**
* @file %{CurrentDocument:FileName}
* @brief <description>
*
* @author KevinL
* @date %{CurrentDate:yyyy-MM-dd}
*/

选择“Apply”,“OK”。接下来,在.c/.cpp/.h中均可,在文件头部位置输入header,回车,即可自动生成注释。

image-20210317105644345

image-20210317105629802


QT中自定义注释模板
https://kevinloongc.github.io/posts/ae6539f3.html
作者
Kevin Loongc
发布于
2021年3月17日
许可协议