7 lines
181 B
Plaintext
7 lines
181 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: cpp-setter
|
|
# key: -setter
|
|
# --
|
|
${void set_`(current-kill 0)`} ($1 ${`(current-kill 0)`}) {
|
|
this->${`(current-kill 0)`} = ${`(current-kill 0)`};
|
|
} |