10 lines
316 B
Plaintext
10 lines
316 B
Plaintext
|
|
# -*- mode: snippet; require-final-newline: nil -*-
|
||
|
|
# name: noncopy
|
||
|
|
# key: noncopy
|
||
|
|
# binding: direct-keybinding
|
||
|
|
# expand-env: ((yas-indent-line 'fixed))
|
||
|
|
# --
|
||
|
|
//! non-copyable: delete copy-constructor
|
||
|
|
${1:class}(const $1 &) = delete;
|
||
|
|
//! non-copyable: delete assignment operator
|
||
|
|
$1 & operator = (const $1 &) = delete;
|