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

8 lines
117 B
Plaintext

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