Merge pull request #291 from dpitic/master

New Python class and function Doxygen snippets
This commit is contained in:
Andrea Crotti 2018-09-22 20:26:53 +01:00 committed by GitHub
commit 9b210e3c0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 5 deletions

View File

@ -5,11 +5,11 @@
# group: doxygen
# --
/**
* @brief ${1:function description}
* @brief ${1:function description}
*
* @details ${2:detailed description}
* @details ${2:detailed description}
*
* @param ${3:param}
* @param ${3:param}
*
* @return ${4:return type}
*/
* @return ${4:return type}
*/

View File

@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# contributor: Dan Pitic <dpitic@gmail.com>
# name: Class Doxygen Doc
# key: doxy_class
# group: doxygen
# --
"""
@brief ${1:class description}
@details ${2:detailed description}
"""

View File

@ -0,0 +1,15 @@
# -*- mode: snippet -*-
# contributor: Dan Pitic <dpitic@gmail.com>
# name: Function Doxygen Doc
# key: doxy_func
# group: doxygen
# --
"""
@brief ${1:function description}
@details ${2:detailed description}
@param ${3:param}
@return ${4:return type}
"""