Skip to content

Commit 9b210e3

Browse files
authored
Merge pull request #291 from dpitic/master
New Python class and function Doxygen snippets
2 parents ef6eae6 + ffc08ac commit 9b210e3

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

snippets/c-lang-common/function_doxygen_doc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# group: doxygen
66
# --
77
/**
8-
* @brief ${1:function description}
8+
* @brief ${1:function description}
99
*
10-
* @details ${2:detailed description}
10+
* @details ${2:detailed description}
1111
*
12-
* @param ${3:param}
12+
* @param ${3:param}
1313
*
14-
* @return ${4:return type}
15-
*/
14+
* @return ${4:return type}
15+
*/
File renamed without changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# -*- mode: snippet -*-
2+
# contributor: Dan Pitic <[email protected]>
3+
# name: Class Doxygen Doc
4+
# key: doxy_class
5+
# group: doxygen
6+
# --
7+
"""
8+
@brief ${1:class description}
9+
10+
@details ${2:detailed description}
11+
"""
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# -*- mode: snippet -*-
2+
# contributor: Dan Pitic <[email protected]>
3+
# name: Function Doxygen Doc
4+
# key: doxy_func
5+
# group: doxygen
6+
# --
7+
"""
8+
@brief ${1:function description}
9+
10+
@details ${2:detailed description}
11+
12+
@param ${3:param}
13+
14+
@return ${4:return type}
15+
"""

0 commit comments

Comments
 (0)