LoginSignup
5
5

More than 5 years have passed since last update.

Doxydoc:Doxygen コメントの入力を補助するプラグイン

Posted at

DoxyDoc

関数やクラスの宣言の手前の行で /** と入力し改行するだけで、適切なDoxygenコメントを自動挿入してくれるSublime Textのプラグイン。

関数の返り値や引数、テンプレート引数に応じて、適切なDoxygenコメントの雛形を作ってくれます。

sample.cpp
/**
@brief [brief description]
* @details [long description]
* 
* @param x [description]
* @param str [description]
* @tparam ValType [description]
* @return [description]
*/
template<typename ValType>
int hogeFuga( const int& x, const string& str);

残念ながらQTスタイルや一行コメントには対応していませんが、コメント整備には重宝するプラグインです。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5