dotfiles/.emacs.d/snippets/c++-mode/member_function

9 lines
132 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: member_function
# key: mf
# --
${1:type} ${2:Class}::${3:name}(${4:args})${5: const}
{
$0
}