Files
dotfiles/.emacs.d/snippets/c++-mode/constructor
T
2019-12-18 12:26:15 +01:00

9 lines
110 B
Plaintext

# -*- mode: snippet -*-
# name: constructor
# key: ct
# --
${1:Name}::$1(${2:args}) ${3: : ${4:init}}
{
$0
}