yasnippet-snippets/c++-mode/operator+=
2010-09-13 19:14:16 +02:00

8 lines
127 B
Plaintext

# -*- mode: snippet -*-
# name: operator+=
# key: +=
# --
${1:MyClass} & $1::operator+=(const $1 &rhs) {
$0
return *this;
}