Files
emacs/snippets/c++-mode/constructor
2024-04-30 07:08:23 +02:00

8 lines
116 B
Plaintext

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